VEGAS/monitoring: revert semantically wrong statix fix
This commit is contained in:
parent
142a640154
commit
b7cf168ada
1 changed files with 2 additions and 2 deletions
|
@ -9,8 +9,8 @@ let
|
||||||
cfg = { inherit (config.services) loki; };
|
cfg = { inherit (config.services) loki; };
|
||||||
|
|
||||||
toString' = v:
|
toString' = v:
|
||||||
if v then "true" else
|
if v == true then "true" else
|
||||||
if !v then "false" else
|
if v == false then "false" else
|
||||||
toString v;
|
toString v;
|
||||||
|
|
||||||
mapPaths = lib.mapAttrsRecursive (
|
mapPaths = lib.mapAttrsRecursive (
|
||||||
|
|
Loading…
Reference in a new issue