21 lines
246 B
Nix
21 lines
246 B
Nix
|
{ lib, ... }:
|
||
|
with lib;
|
||
|
with types;
|
||
|
{
|
||
|
|
||
|
|
||
|
options.components.monitor = {
|
||
|
enable = mkOption {
|
||
|
type = bool;
|
||
|
default = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
imports = [
|
||
|
./netdata.nix
|
||
|
];
|
||
|
|
||
|
|
||
|
config = mkIf config.components.monitor.enable { };
|
||
|
}
|