13 lines
245 B
Nix
13 lines
245 B
Nix
{ ... }: {
|
|
services.nginx = {
|
|
enable = true;
|
|
|
|
recommendedTlsSettings = true;
|
|
recommendedOptimisation = true;
|
|
recommendedGzipSettings = true;
|
|
recommendedProxySettings = true;
|
|
};
|
|
|
|
imports = [ ./personal-websites.nix ];
|
|
}
|