aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstuebinm2021-03-14 21:17:03 +0100
committerstuebinm2021-03-14 21:17:03 +0100
commit9683397c4d77ec40a66eb126880442c84feeb74f (patch)
treec0ef3eada0443de14a9a1b32930cba652500013f
parent0d5adebcf26fbdc1f4d96861cf76d20b2ac42f0b (diff)
don't server maps per default.
Note that this may break your config!
-rw-r--r--instance-options.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/instance-options.nix b/instance-options.nix
index 8df507d..17e398d 100644
--- a/instance-options.nix
+++ b/instance-options.nix
@@ -222,7 +222,7 @@ with pkgs;
maps = {
serve = mkOption {
- default = true;
+ default = false;
type = types.bool;
description = "Whether to serve maps through nginx.";
};