home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

users.nix (324B)


      1 { config, ... }:
      2 {
      3   users.motd = with config; ''
      4     Welcome to ${networking.hostName}
      5 
      6     - This machine is managed by NixOS
      7     - All changes are futile
      8 
      9     OS:      Nixos ${system.nixos.release} (${system.nixos.codeName})
     10     Version: ${system.nixos.version}
     11     Kernel:  ${boot.kernelPackages.kernel.version}
     12   '';
     13 }