2
2
mirror of https://git.feal.no/felixalb/nixos-config.git synced 2025-03-23 19:42:51 +01:00

12 lines
217 B
Nix

{ config, pkgs, ... }:
{
services.nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
};
}