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