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

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