infrastructure/hosts/hydrogen/services/nginx/default.nix

13 lines
245 B
Nix
Raw Normal View History

{ ... }: {
services.nginx = {
enable = true;
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
};
imports = [ ./personal-websites.nix ];
}