diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2019-02-01 22:14:28 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2019-02-01 22:14:28 +0100 |
commit | f543a0c4d15adbdb73dc08dc106dabf66f6b7f0a (patch) | |
tree | dc1869980724d0fefe4ad97df71e92046344af89 | |
parent | 764875dd5939a820405f35e8d500555bda304a70 (diff) | |
download | nixos-f543a0c4d15adbdb73dc08dc106dabf66f6b7f0a.tar nixos-f543a0c4d15adbdb73dc08dc106dabf66f6b7f0a.tar.gz nixos-f543a0c4d15adbdb73dc08dc106dabf66f6b7f0a.tar.bz2 nixos-f543a0c4d15adbdb73dc08dc106dabf66f6b7f0a.tar.xz nixos-f543a0c4d15adbdb73dc08dc106dabf66f6b7f0a.zip |
...
-rw-r--r-- | ymir.nix | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1093,12 +1093,12 @@ in rec { | |||
1093 | security.dhparams = { | 1093 | security.dhparams = { |
1094 | enable = true; | 1094 | enable = true; |
1095 | params = { | 1095 | params = { |
1096 | nginx.bits = 3072; | 1096 | nginx = 3072; |
1097 | "posfix-512".bits = 512; | 1097 | "posfix-512" = 512; |
1098 | "postfix-1024".bits = 1024; | 1098 | "postfix-1024" = 1024; |
1099 | "postfix-2048".bits = 2048; | 1099 | "postfix-2048" = 2048; |
1100 | "dovecot2".bits = 2048; | 1100 | "dovecot2" = 2048; |
1101 | prosody.bits = 3072; | 1101 | prosody = 3072; |
1102 | }; | 1102 | }; |
1103 | }; | 1103 | }; |
1104 | } | 1104 | } |