about summary refs log tree commit diff
path: root/hosts/common/system/motd.nix
blob: 898d03ff955c582979b3e9489aa84235067b9b38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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}
  '';
}