From 968f28581445928f1c94dc072376d2635cdd85c2 Mon Sep 17 00:00:00 2001 From: William Date: Sun, 8 Jun 2025 20:47:59 -0300 Subject: [PATCH] remove references to deleted files --- hosts/modules/alexandria/default.nix | 5 ----- hosts/modules/alexandria/users.nix | 16 +--------------- 2 files changed, 1 insertion(+), 20 deletions(-) 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" ]; }