mirror of
https://git.feal.no/felixalb/nixos-config.git
synced 2025-01-09 20:01:15 +01:00
12 lines
217 B
Nix
12 lines
217 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.nginx = {
|
|
enable = true;
|
|
recommendedGzipSettings = true;
|
|
recommendedOptimisation = true;
|
|
recommendedProxySettings = true;
|
|
recommendedTlsSettings = true;
|
|
};
|
|
}
|