From b7cf168adaaf38e831cc3177073a2f3e57e7cfd6 Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 17 Oct 2022 15:03:08 +0200 Subject: [PATCH] VEGAS/monitoring: revert semantically wrong statix fix --- hosts/VEGAS/services/monitoring/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/VEGAS/services/monitoring/default.nix b/hosts/VEGAS/services/monitoring/default.nix index 418f48d..0a231db 100644 --- a/hosts/VEGAS/services/monitoring/default.nix +++ b/hosts/VEGAS/services/monitoring/default.nix @@ -9,8 +9,8 @@ let cfg = { inherit (config.services) loki; }; toString' = v: - if v then "true" else - if !v then "false" else + if v == true then "true" else + if v == false then "false" else toString v; mapPaths = lib.mapAttrsRecursive (