This commit is contained in:
Ezri Zhu 2024-09-27 05:59:28 -04:00
parent c1016c073f
commit eb59baaa30
Signed by: ezri
SSH key fingerprint: SHA256:PjS2hKMfl3gJ5Furjjq+kXa4ZvS1c0gb4/djAxxAf6c
2 changed files with 7 additions and 1 deletions

View file

@ -3,6 +3,7 @@
{
imports = [
./users.nix
./motd.nix
];
nix = {
package = pkgs.lix;
@ -30,5 +31,4 @@
defaultNetwork.settings.dns_enabled = true;
};
};
}

6
common/motd.nix Normal file
View file

@ -0,0 +1,6 @@
{
users.motd = ''
Welcome to wolfgirl.systems!
Latest news: flakes now enabled.
'';
}