NiksOS/system/core/users.nix
2025-03-28 00:10:28 +01:00

18 lines
280 B
Nix

{
config,
pkgs,
...
}: {
users.users.jsw = {
isNormalUser = true;
shell = pkgs.fish;
hashedPasswordFile = config.age.secrets.password.path;
extraGroups = [
"libvirtd"
"NetworkManager"
"plugdev"
"dialout"
"wheel"
];
};
}