From c4743d8035a19fb0d04e0b5942c58d68d0dda03d Mon Sep 17 00:00:00 2001 From: caandt Date: Sun, 27 Oct 2024 13:51:38 -0500 Subject: [PATCH] remove users.nix from default system --- hosts/hyuganatsu/default.nix | 4 ++++ hosts/iyokan/default.nix | 4 ++++ system/default.nix | 1 - system/users.nix | 6 ------ 4 files changed, 8 insertions(+), 7 deletions(-) delete mode 100644 system/users.nix 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"]; - }; -}