23 lines
351 B
Nix
23 lines
351 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
username,
|
|
...
|
|
}:
|
|
|
|
{
|
|
users.users.${username} = {
|
|
isNormalUser = true;
|
|
shell = pkgs.bash; # Actually fish
|
|
extraGroups = (
|
|
[
|
|
"wheel"
|
|
"input"
|
|
"networkmanager"
|
|
"docker"
|
|
"kvm"
|
|
]
|
|
++ (if config.programs.gamemode.enable then [ "gamemode" ] else [ ])
|
|
);
|
|
};
|
|
}
|