summaryrefslogtreecommitdiffstats
path: root/krebs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2015-10-21 18:44:51 +0200
committermakefu <github@syntax-fehler.de>2015-10-21 18:44:51 +0200
commitdc1bb40c45e69c6e4556ab2c4d92f04c25e5a2bf (patch)
tree477de0e6b7fe20d2cdfaed05594456ad4e1d0a30 /krebs
parentba4708f2638722c8d18e560847946fdb5c87484d (diff)
krebs 3 nginx: extraConfig is type string
Diffstat (limited to 'krebs')
-rw-r--r--krebs/3modules/nginx.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/krebs/3modules/nginx.nix b/krebs/3modules/nginx.nix
index 0530921a..92177103 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 = "";
};
};