blob: 027ca0fbd4cabcb70c646ef4d7e4b7e7df03b811 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ pkgs, ... }:
{
users = {
users.tdback = {
isNormalUser = true;
uid = 1000;
home = "/home/tdback";
group = "tdback";
extraGroups = [ "wheel" "users" "networkmanager" "video" "audio" ];
shell = pkgs.bash;
ignoreShellProgramCheck = true;
};
groups.tdback.gid = 1000;
};
}
|