diff --git a/hosts/modules/alexandria/default.nix b/hosts/modules/alexandria/default.nix index 7016d1c..40a4da2 100644 --- a/hosts/modules/alexandria/default.nix +++ b/hosts/modules/alexandria/default.nix @@ -2,13 +2,8 @@ { imports = [ - ./forgejo.nix ./hardware-configuration.nix - ./jellyfin.nix - ./librespeed.nix - ./nginx.nix ./services.nix ./users.nix - ./vaultwarden.nix ]; } diff --git a/hosts/modules/alexandria/users.nix b/hosts/modules/alexandria/users.nix index 353f28f..d0a771b 100644 --- a/hosts/modules/alexandria/users.nix +++ b/hosts/modules/alexandria/users.nix @@ -1,19 +1,5 @@ { ... }: { - users = { - users = { - nginx.extraGroups = [ "acme" ]; - }; - groups = { - hosted = { - gid = 1005; - members = [ - "user" - "paperless" - "vaultwarden" - ]; - }; - }; - }; + users.users.nginx.extraGroups = [ "acme" ]; }