This commit is contained in:
zackartz 2024-05-05 16:45:04 -04:00
parent 64ab9e362e
commit 3e014b28d4
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA

View file

@ -54,8 +54,8 @@
config = mkIf cfg.enable { config = mkIf cfg.enable {
services.nginx.virtualHosts.${cfg.domain} = { services.nginx.virtualHosts.${cfg.domain} = {
forceSSL = ${cfg.ssl}; forceSSL = cfg.ssl;
enableACME = ${cfg.ssl}; enableACME = cfg.ssl;
root = "${packages.${pkgs.system}.default}"; root = "${packages.${pkgs.system}.default}";
}; };
}; };