aboutsummaryrefslogtreecommitdiff
path: root/examples/system/configuration.nix
blob: b2b55cf3eccb5bcaf6d9f07fb8e990df667349e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
{
  imports = [ ./common.nix ];

  networking.hostName = "example-nixos-syyyystem";

  users.users.hello = {
    isNormalUser = true;
    password = "";
    uid = 1010;
  };
}