{ flakes, pkgs, ... }: { services.nginx = { virtualHosts."donsz.nl" = { forceSSL = true; http2 = true; enableACME = true; locations."/" = { root = "${flakes.homepage.packages.${pkgs.system}.website}/normal"; }; }; virtualHosts."gay.donsz.nl" = { forceSSL = true; http2 = true; enableACME = true; locations."/" = { root = "${flakes.homepage.packages.${pkgs.system}.website}/gay"; }; }; virtualHosts."jdonszelmann.nl" = { forceSSL = true; http2 = true; enableACME = true; locations."/" = { root = "${flakes.homepage.packages.${pkgs.system}.website}/normal"; }; }; }; }