secured should be a bool

This commit is contained in:
niten 2024-07-28 13:08:29 -07:00
parent 37ea31b085
commit 964974bca1

View File

@ -23,7 +23,7 @@ in {
}; };
secured = mkOption { secured = mkOption {
type = str; type = bool;
description = "Whether to use https instead of http."; description = "Whether to use https instead of http.";
default = !toplevel.config.fudo.metrics.prometheus.private-network; default = !toplevel.config.fudo.metrics.prometheus.private-network;
}; };