diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2024-12-30 16:32:34 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2025-03-14 01:02:11 +0100 |
commit | 00114be488abfb32a803a5ca8c2530e6fbb66103 (patch) | |
tree | 4287fe330fbdd6884138ce2ea8ecc2c59c9bf8f4 /flakes/private | |
parent | f5426be2f5340cfe103a8cf0153821dffe7c55d4 (diff) | |
download | Nix-00114be488abfb32a803a5ca8c2530e6fbb66103.tar.gz Nix-00114be488abfb32a803a5ca8c2530e6fbb66103.tar.zst Nix-00114be488abfb32a803a5ca8c2530e6fbb66103.zip |
Add monitoring plugins as readonly
Diffstat (limited to 'flakes/private')
-rw-r--r-- | flakes/private/monitoring/flake.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/flakes/private/monitoring/flake.nix b/flakes/private/monitoring/flake.nix index 5610d67..980fb47 100644 --- a/flakes/private/monitoring/flake.nix +++ b/flakes/private/monitoring/flake.nix | |||
@@ -183,6 +183,12 @@ | |||
183 | description = "Arguments to pass to the naemon plugin configuration"; | 183 | description = "Arguments to pass to the naemon plugin configuration"; |
184 | type = lib.types.attrsOf (lib.types.attrsOf lib.types.unspecified); | 184 | type = lib.types.attrsOf (lib.types.attrsOf lib.types.unspecified); |
185 | }; | 185 | }; |
186 | availablePlugins = lib.mkOption { | ||
187 | type = lib.types.unspecified; | ||
188 | readOnly = true; | ||
189 | description = "List of available plugins"; | ||
190 | default = allPluginsConfig; | ||
191 | }; | ||
186 | activatedPlugins = lib.mkOption { | 192 | activatedPlugins = lib.mkOption { |
187 | default = []; | 193 | default = []; |
188 | description = "List of naemon plugins to activate"; | 194 | description = "List of naemon plugins to activate"; |