diff --git a/hosts/hyuganatsu/default.nix b/hosts/hyuganatsu/default.nix index 884d866..1ec5d79 100644 --- a/hosts/hyuganatsu/default.nix +++ b/hosts/hyuganatsu/default.nix @@ -10,4 +10,8 @@ videoDrivers = ["amdgpu"]; deviceSection = ''Option "TearFree" "true"''; }; + users.users.ahnwuoa = { + isNormalUser = true; + extraGroups = ["wheel" "podman"]; + }; } diff --git a/hosts/iyokan/default.nix b/hosts/iyokan/default.nix index 2a67390..7b37626 100644 --- a/hosts/iyokan/default.nix +++ b/hosts/iyokan/default.nix @@ -16,4 +16,8 @@ "nvidia-x11" "nvidia-settings" ]; + users.users.caandt = { + isNormalUser = true; + extraGroups = ["wheel" "podman"]; + }; } diff --git a/system/default.nix b/system/default.nix index d20e269..eaff0a2 100644 --- a/system/default.nix +++ b/system/default.nix @@ -8,7 +8,6 @@ ./locale.nix ./plasma.nix ./security.nix - ./users.nix ./virt.nix ]; } diff --git a/system/users.nix b/system/users.nix deleted file mode 100644 index 8bc7ca5..0000000 --- a/system/users.nix +++ /dev/null @@ -1,6 +0,0 @@ -{...}: { - users.users.ahnwuoa = { - isNormalUser = true; - extraGroups = ["wheel" "podman"]; - }; -}