blob: 01575e147ba95b278e8348ab5009637fa2b3c6cd (
plain) (
blame)
1
2
3
4
5
6
7
8
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}
'';
}
|