NiksOS/system/core/users.nix
2025-02-14 19:40:27 +00:00

14 lines
239 B
Nix

{pkgs, ...}: {
users.users.jsw = {
isNormalUser = true;
shell = pkgs.fish;
initialPassword = "changeme";
extraGroups = [
"libvirtd"
"NetworkManager"
"plugdev"
"dialout"
"wheel"
];
};
}