summary refs log tree commit diff
path: root/nixos/tests/common/user-account.nix
blob: a57ee2d59ae36e97f1508b5a7fe2d92797258b4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ ... }:

{ users.users.alice =
    { isNormalUser = true;
      description = "Alice Foobar";
      password = "foobar";
      uid = 1000;
    };

  users.users.bob =
    { isNormalUser = true;
      description = "Bob Foobar";
      password = "foobar";
    };
}