fix: homeConfigurations need to be flattened

This commit is contained in:
Noah Masur
2025-07-02 14:48:21 -06:00
parent 5ed6870bdd
commit a5b628dd30

View File

@ -183,7 +183,8 @@
) hosts ) hosts
) lib.hosts; ) lib.hosts;
homeConfigurations = builtins.mapAttrs ( homeConfigurations = flattenAttrset (
builtins.mapAttrs (
system: hosts: system: hosts:
builtins.mapAttrs ( builtins.mapAttrs (
name: module: name: module:
@ -192,7 +193,8 @@
specialArgs = { inherit hostnames; }; specialArgs = { inherit hostnames; };
} }
) hosts ) hosts
) homeModules; ) homeModules
);
# Disk formatting, only used once # Disk formatting, only used once
diskoConfigurations = { diskoConfigurations = {