diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/motd.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/motd.nix b/modules/motd.nix new file mode 100644 index 0000000..01575e1 --- /dev/null +++ b/modules/motd.nix @@ -0,0 +1,9 @@ +{ self, config, ... }: +{ + users.motdFile = "/etc/motd"; + environment.etc.motd.text = '' + Machine ${config.networking.hostName} + NixOS ${config.system.nixos.release} + @ ${self.shortRev or self.dirtyShortRev} + ''; +} |
