From 964974bca1a8864dd180ab6ff48eb19243ac84d3 Mon Sep 17 00:00:00 2001 From: niten Date: Sun, 28 Jul 2024 13:08:29 -0700 Subject: [PATCH] secured should be a bool --- lib/fudo/prometheus.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fudo/prometheus.nix b/lib/fudo/prometheus.nix index 6c0157f..6faacbd 100644 --- a/lib/fudo/prometheus.nix +++ b/lib/fudo/prometheus.nix @@ -23,7 +23,7 @@ in { }; secured = mkOption { - type = str; + type = bool; description = "Whether to use https instead of http."; default = !toplevel.config.fudo.metrics.prometheus.private-network; };