aboutsummaryrefslogtreecommitdiff
path: root/modules/motd.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-08-12 10:02:16 -0700
committerFranck Cuny <franck@fcuny.net>2025-08-12 10:02:16 -0700
commit9d60cbf230330d062799bb43b18c1f9fb374ec2c (patch)
tree8dce4c7e256413bcaf94230286602d268da7a543 /modules/motd.nix
parentcreate profiles for networkd and nix's GC (diff)
downloadinfra-9d60cbf230330d062799bb43b18c1f9fb374ec2c.tar.gz
add profile for motd
Diffstat (limited to 'modules/motd.nix')
-rw-r--r--modules/motd.nix9
1 files changed, 0 insertions, 9 deletions
diff --git a/modules/motd.nix b/modules/motd.nix
deleted file mode 100644
index 01575e1..0000000
--- a/modules/motd.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{ self, config, ... }:
-{
- users.motdFile = "/etc/motd";
- environment.etc.motd.text = ''
- Machine ${config.networking.hostName}
- NixOS ${config.system.nixos.release}
- @ ${self.shortRev or self.dirtyShortRev}
- '';
-}