server/fili/services/websites/homepage.nix
Jana Dönszelmann 3e7d55f5b9
All checks were successful
/ lint (push) Successful in 1m9s
retry
2025-08-20 12:05:26 +02:00

23 lines
470 B
Nix

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