diff --git a/common/default.nix b/common/default.nix index c4a8143..0266fc1 100644 --- a/common/default.nix +++ b/common/default.nix @@ -3,6 +3,7 @@ { imports = [ ./users.nix + ./motd.nix ]; nix = { package = pkgs.lix; @@ -30,5 +31,4 @@ defaultNetwork.settings.dns_enabled = true; }; }; - } diff --git a/common/motd.nix b/common/motd.nix new file mode 100644 index 0000000..2797889 --- /dev/null +++ b/common/motd.nix @@ -0,0 +1,6 @@ +{ + users.motd = '' +Welcome to wolfgirl.systems! +Latest news: flakes now enabled. +''; +}