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

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

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