treewide: fix statix errors

This commit is contained in:
Felix Buehler 2023-11-07 23:13:51 +01:00
parent a4b8c2b8da
commit 743d7eead9
48 changed files with 72 additions and 82 deletions

View file

@ -2,7 +2,7 @@
{ config, lib, pkgs, ... }:
let
cfg = config.my.services.prometheus;
domain = config.networking.domain;
inherit (config.networking) domain;
in
{
options.my.services.prometheus = with lib; {
@ -100,13 +100,13 @@ in
alert = name;
expr = opts.condition;
for = opts.time;
labels = opts.labels;
inherit (opts) labels;
annotations = {
description = opts.description;
inherit (opts) description;
grafana = lib.optionalString config.services.grafana.enable "https://visualization.${domain}";
};
})
(cfg.rules);
cfg.rules;
}
];
}))