aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/systems/default.nix1
-rw-r--r--modules/systems/motd.nix12
2 files changed, 13 insertions, 0 deletions
diff --git a/modules/systems/default.nix b/modules/systems/default.nix
index a543fe5..27fb53b 100644
--- a/modules/systems/default.nix
+++ b/modules/systems/default.nix
@@ -2,6 +2,7 @@
{
imports = [
+ ./motd.nix
./nix.nix
./software.nix
./ssh.nix
diff --git a/modules/systems/motd.nix b/modules/systems/motd.nix
new file mode 100644
index 0000000..898d03f
--- /dev/null
+++ b/modules/systems/motd.nix
@@ -0,0 +1,12 @@
+{config, ...}:
+{
+ users.motd = ''
+ Welcome
+ - This machine is managed with nix
+
+ Hostname: ${config.networking.hostName}
+ OS: NixOS ${config.system.nixos.release} (${config.system.nixos.codeName})
+ Version: ${config.system.nixos.version}
+ Kernel: ${config.boot.kernelPackages.kernel.version}
+ '';
+}