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

{ users.extraUsers = pkgs.lib.singleton
    { name = "alice";
      description = "Alice Foobar";
      home = "/home/alice";
      createHome = true;
      useDefaultShell = true;
      password = "foobar";
      uid = 1000;
    };
}