nixos-infra/services/prometheus/service.nix
2026-04-01 09:54:15 +03:00

17 lines
181 B
Nix

{
config,
lib,
...
}:
let
inherit (config.machine.prometheus)
enable
port
;
in
with lib;
mkIf enable {
services.prometheus = {
inherit enable port;
};
}