diff --git a/configuration/default.nix b/configuration/default.nix index 6f7cf41..81e7241 100644 --- a/configuration/default.nix +++ b/configuration/default.nix @@ -153,21 +153,16 @@ services.logrotate = { enable = true; - settings = - { - # Override the default, just keep fewer logs - nginx.rotate = 6; - } - // lib.mapAttrs' (virtualHost: _: - lib.nameValuePair "/var/log/nginx/${virtualHost}/access.log" { - frequency = "daily"; - rotate = 2; - compress = true; - delaycompress = true; - su = "${config.services.nginx.user} ${config.services.nginx.group}"; - postrotate = "[ ! -f /var/run/nginx/nginx.pid ] || kill -USR1 `cat /var/run/nginx/nginx.pid`"; - }) - config.services.nginx.virtualHosts; + settings = lib.mapAttrs' (virtualHost: _: + lib.nameValuePair "/var/log/nginx/${virtualHost}/access.log" { + frequency = "daily"; + rotate = 2; + compress = true; + delaycompress = true; + su = "${config.services.nginx.user} ${config.services.nginx.group}"; + postrotate = "[ ! -f /var/run/nginx/nginx.pid ] || kill -USR1 `cat /var/run/nginx/nginx.pid`"; + }) + config.services.nginx.virtualHosts; }; systemd.tmpfiles.rules = lib.mapAttrsToList ( diff --git a/configuration/services/foundryvtt.nix b/configuration/services/foundryvtt.nix index d573480..a4978fd 100644 --- a/configuration/services/foundryvtt.nix +++ b/configuration/services/foundryvtt.nix @@ -8,11 +8,11 @@ in { imports = [flake-inputs.foundryvtt.nixosModules.foundryvtt]; - services.foundryvtt = { - enable = true; - hostName = domain; - minifyStaticFiles = true; - }; + # services.foundryvtt = { + # enable = true; + # hostName = domain; + # minifyStaticFiles = true; + # }; # Want to start it manually when I need it, not have it constantly # running