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

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

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