diff --git a/snowfall-lib/flake/default.nix b/snowfall-lib/flake/default.nix index 262d0dd..8f50306 100644 --- a/snowfall-lib/flake/default.nix +++ b/snowfall-lib/flake/default.nix @@ -205,22 +205,7 @@ in rec { builtins.map (system: { name = system; value = - flake-outputs.packages.${system} - // { - homeConfigurations = let - homeNames = filterAttrs (_: home: home.system == system) homes; - homeConfigurations = mapAttrs (home-name: _: flake-outputs.homeConfigurations.${home-name}) homeNames; - renamedHomeConfigurations = - mapAttrs' ( - name: value: - if hasSuffix "@${system}" name - then nameValuePair (removeSuffix "@${system}" name) value - else nameValuePair name value - ) - homeConfigurations; - in - renamedHomeConfigurations; - }; + flake-outputs.packages.${system}; }) (builtins.attrNames flake-outputs.pkgs) )); };