Files
nixos-blueprint/hosts/dunamis/users.nix
unexplrd 2e6e28ef32 initial
2025-02-06 00:33:06 +02:00

16 lines
322 B
Nix

{pkgs, ...}: {
nix.settings.trusted-users = ["user"];
users.users = {
user = {
isNormalUser = true;
extraGroups = ["wheel" "video" "libvirtd" "dialout"];
shell = pkgs.nushell;
};
work = {
isNormalUser = true;
extraGroups = ["video"];
shell = pkgs.nushell;
};
};
}