chore: rename unused attributes in inventory adapter

This commit is contained in:
Johannes Kirschbauer
2025-03-29 14:27:27 +01:00
parent cbc36be62f
commit 0f02c3c42c

View File

@@ -75,7 +75,7 @@ let
Choose one of the following inputs: Choose one of the following inputs:
- ${ - ${
builtins.concatStringsSep "\n- " ( builtins.concatStringsSep "\n- " (
lib.attrNames (lib.filterAttrs (name: input: input ? clan) flake.inputs) lib.attrNames (lib.filterAttrs (_name: input: input ? clan) flake.inputs)
) )
} }
@@ -129,7 +129,7 @@ let
settings = { settings = {
imports = [ imports = [
machineSettings machineSettings
] ++ lib.attrValues (lib.mapAttrs (tagName: v: v.settings) settingsViaTags); ] ++ lib.attrValues (lib.mapAttrs (_tagName: v: v.settings) settingsViaTags);
}; };
} }
); );