mirror of
https://git.feal.no/felixalb/nixos-config.git
synced 2025-01-09 11:51:14 +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;
|
||
|
};
|
||
|
}
|