blob: b9a0754b0732fc53c0377f44ccca0bfb5b0318da (
plain) (
tree)
|
|
{...}: {
imports = [
./hosts.nix
];
security.acme = {
acceptTerms = true;
defaults = {
email = "admin@vhack.eu";
webroot = "/var/lib/acme/acme-challenge";
};
};
networking.firewall = {
allowedTCPPorts = [80 443];
};
services.nginx = {
enable = true;
};
}
# vim: ts=2
|