aboutsummaryrefslogtreecommitdiff
path: root/modules/hosts/system
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hosts/system')
-rw-r--r--modules/hosts/system/users.nix19
1 files changed, 1 insertions, 18 deletions
diff --git a/modules/hosts/system/users.nix b/modules/hosts/system/users.nix
index 5ecdfba..9550e8d 100644
--- a/modules/hosts/system/users.nix
+++ b/modules/hosts/system/users.nix
@@ -1,22 +1,5 @@
-{
- config,
- username,
- pkgs,
- lib,
- ...
-}:
+{ ... }:
{
- users.users."${username}" = {
- isNormalUser = true;
- extraGroups = [
- "wheel"
- "video"
- "input"
- (lib.mkIf config.networking.networkmanager.enable "networkmanager")
- ];
- shell = pkgs.zsh;
- ignoreShellProgramCheck = true;
- };
security.sudo.wheelNeedsPassword = false;
}