Files
nixos/system/user.nix
T
2025-12-22 09:32:38 -06:00

16 lines
246 B
Nix

{
pkgs,
myConfig,
...
}: {
users = {
users = {
${myConfig.nixos.username} = {
isNormalUser = true;
extraGroups = ["wheel" "networkmanager" "input" "video"];
useDefaultShell = true;
};
};
};
}