Add homeConfigurations

This commit is contained in:
Greg Hellings
2025-12-16 19:45:17 -06:00
parent 3dc109b361
commit 50aa005349
5 changed files with 14 additions and 5 deletions
+4 -1
View File
@@ -10,5 +10,8 @@ let
nixos = lib.mapAttrs' (n: v: lib.nameValuePair "nixos-${n}" v.config.system.build.toplevel) (
lib.filterAttrs (_: v: v.pkgs.stdenv.hostPlatform.system == system) top.self.nixosConfigurations
);
homemanager = lib.mapAttrs' (n: v: lib.nameValuePair "hm-${n}" v.activationPackage) (
lib.filterAttrs (_: v: v.pkgs.stdenv.hostPlatform.system == system) top.self.homeConfigurations
);
in
nixos // self'.packages
homemanager // nixos // self'.packages