lol

nixos/nginx: fix type of sslTrustedCertificate option

The option was added in 1251b34b5bbcd11a7a2974df7bada5d6d47b985d
with type `types.path` but default `null`, so eval failed with
the default setting. This broke the acme and certmgr tests.

cc: @vincentbernat @fpletz

Uli Baum 15e6e1ff 028b64ab

+1 -1
+1 -1
nixos/modules/services/web-servers/nginx/vhost-options.nix
··· 130 130 }; 131 131 132 132 sslTrustedCertificate = mkOption { 133 - type = types.path; 133 + type = types.nullOr types.path; 134 134 default = null; 135 135 example = "/var/root.cert"; 136 136 description = "Path to root SSL certificate for stapling and client certificates.";