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

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

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