9 lines
214 B
Nix
9 lines
214 B
Nix
{
|
|
# Reqeusts SSL and adds the site to nginx
|
|
services.nginx.virtualHosts."hermitcollective.net" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
root = "/etc/nixos/sites/hermitcollective.net/docs";
|
|
};
|
|
}
|