10 lines
168 B
Nix
10 lines
168 B
Nix
|
{ config, domains, ... }:
|
||
|
|
||
|
{
|
||
|
services.nginx.virtualHosts."${domains.root}" = {
|
||
|
forceSSL = true;
|
||
|
enableACME = true;
|
||
|
root = "/var/www/spyhoodle.me";
|
||
|
};
|
||
|
}
|