fix: change feature manager to manage

This commit is contained in:
2025-09-23 12:58:57 +02:00
parent 82a5328d7f
commit fac7bdd62e
3 changed files with 5 additions and 5 deletions

View File

@@ -70,7 +70,7 @@ let
'';
};
manager = {
manage = {
services.influxdb.enable = true;
features.monitoring.nodeExporter.extraCollectors = [ "nfsd" ];
};
@@ -141,7 +141,7 @@ in
options.features.hpc = {
enable = mkEnableOption "Enable HPC features";
manager = mkEnableOption "Enable management features";
manage = mkEnableOption "Enable management features";
login = mkEnableOption "Enable login node features";
@@ -153,7 +153,7 @@ in
config = mkIf cfg.enable (mkMerge [
configuration
(mkIf cfg.manager manager)
(mkIf cfg.manage manage)
(mkIf cfg.login login)