From 5073d1b2b1baf75ea7981532140517052a45fa5b Mon Sep 17 00:00:00 2001 From: Ahwx Date: Mon, 28 Jul 2025 00:57:48 +0200 Subject: [PATCH] feat: adds user `liv` to `wheel` group; adds `sops-nix` module to user profile --- modules/core/user.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/core/user.nix b/modules/core/user.nix index a6b72b9..756878a 100644 --- a/modules/core/user.nix +++ b/modules/core/user.nix @@ -10,6 +10,7 @@ imports = [ inputs.home-manager.nixosModules.home-manager ] ++ [ ./../../roles/default.nix ] + ++ [ ./sops.nix ] ++ [ ./../../variables.nix ]; home-manager = { useUserPackages = true; @@ -38,8 +39,6 @@ fonts.fontconfig.antialias = false; - users.groups.gay = { }; - users.users.${username} = { isNormalUser = true; description = "${username}"; @@ -48,8 +47,8 @@ "wheel" "docker" "input" - "gay" "dialout" + "wheel" ]; shell = pkgs.zsh; };