diff options
author | stuebinm | 2021-03-14 21:17:03 +0100 |
---|---|---|
committer | stuebinm | 2021-03-14 21:17:03 +0100 |
commit | 9683397c4d77ec40a66eb126880442c84feeb74f (patch) | |
tree | c0ef3eada0443de14a9a1b32930cba652500013f /instance-options.nix | |
parent | 0d5adebcf26fbdc1f4d96861cf76d20b2ac42f0b (diff) |
don't server maps per default.
Note that this may break your config!
Diffstat (limited to '')
-rw-r--r-- | instance-options.nix | 2 |
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."; }; |