flake.nix: don't build packages but just hosts in hydraJobs

This commit is contained in:
Astro 2022-01-08 23:27:08 +01:00
parent 3d567052d4
commit 944d227d17
1 changed files with 5 additions and 5 deletions

View File

@ -557,11 +557,11 @@
hydraJobs = forAllSystems (system:
builtins.mapAttrs (_: nixpkgs.lib.hydraJob) (
nixpkgs.lib.filterAttrs (_: nixosSystem:
system == nixosSystem.config.system.build.toplevel.system
) self.nixosConfigurations
//
self.packages.${system}
nixpkgs.lib.filterAttrs (_: toplevel:
system == toplevel.system
) (builtins.mapAttrs (_: nixosSystem:
nixosSystem.config.system.build.toplevel
) self.nixosConfigurations)
)
);
};