vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / common / user-account.nix
bloba57ee2d59ae36e97f1508b5a7fe2d92797258b4b
1 { ... }:
3 { users.users.alice =
4     { isNormalUser = true;
5       description = "Alice Foobar";
6       password = "foobar";
7       uid = 1000;
8     };
10   users.users.bob =
11     { isNormalUser = true;
12       description = "Bob Foobar";
13       password = "foobar";
14     };