18 lines
309 B
Nix
18 lines
309 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
{
|
|
services.nginx = {
|
|
enable = true;
|
|
recommendedGzipSettings = true;
|
|
recommendedOptimisation = true;
|
|
recommendedProxySettings = true;
|
|
recommendedTlsSettings = true;
|
|
};
|
|
|
|
security.acme = {
|
|
acceptTerms = true;
|
|
defaults.email = "k3t@k3t.dev";
|
|
};
|
|
}
|