nix-conf/system/modules/users.nix
2025-07-14 16:18:20 +08:00

24 lines
376 B
Nix

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