diff options
author | makefu <github@syntax-fehler.de> | 2015-10-21 18:44:51 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2015-10-21 18:44:51 +0200 |
commit | dc1bb40c45e69c6e4556ab2c4d92f04c25e5a2bf (patch) | |
tree | 477de0e6b7fe20d2cdfaed05594456ad4e1d0a30 /krebs | |
parent | ba4708f2638722c8d18e560847946fdb5c87484d (diff) |
krebs 3 nginx: extraConfig is type string
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/3modules/nginx.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/krebs/3modules/nginx.nix b/krebs/3modules/nginx.nix index 0530921a0..921771033 100644 --- a/krebs/3modules/nginx.nix +++ b/krebs/3modules/nginx.nix @@ -36,7 +36,7 @@ let type = with types; listOf (attrsOf str); }; extraConfig = mkOption { - type = with types; str; + type = with types; string; default = ""; }; }; |