From 944d227d175823ef7833589d3aaf71b0f0c001bd Mon Sep 17 00:00:00 2001 From: Astro Date: Sat, 8 Jan 2022 23:27:08 +0100 Subject: [PATCH] flake.nix: don't build packages but just hosts in hydraJobs --- flake.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 26498b09..adbc4e05 100644 --- a/flake.nix +++ b/flake.nix @@ -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) ) ); };