17 lines
181 B
Nix
17 lines
181 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
inherit (config.machine.prometheus)
|
|
enable
|
|
port
|
|
;
|
|
in
|
|
with lib;
|
|
mkIf enable {
|
|
services.prometheus = {
|
|
inherit enable port;
|
|
};
|
|
}
|