diff options
Diffstat (limited to 'system/users.nix')
| -rw-r--r-- | system/users.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/system/users.nix b/system/users.nix new file mode 100644 index 0000000..3b589b8 --- /dev/null +++ b/system/users.nix @@ -0,0 +1,7 @@ +{pkgs, ...}: { + users.users.mun = { + isNormalUser = true; + extraGroups = ["wheel" "bluetooth" "networkmanager" "kvm" "nixos"]; + shell = pkgs.zsh; + }; +} |
