From cd5ada41ad659d93bb92dd161ebdb95d2a3c0dad Mon Sep 17 00:00:00 2001 From: Astro Date: Sat, 8 Jan 2022 18:17:28 +0100 Subject: [PATCH] flake.nix: drop extraneous hydraJobs.${hostName}-kernel --- flake.nix | 9 --------- 1 file changed, 9 deletions(-) diff --git a/flake.nix b/flake.nix index 73ba6952..635e4559 100644 --- a/flake.nix +++ b/flake.nix @@ -558,15 +558,6 @@ ) self.nixosConfigurations // self.packages.${system} - // - # make hydra prebuild all kernels - builtins.foldl' (result: hostName: - if self.nixosConfigurations.${hostName}.config.boot.isContainer - then result - else result // { - "${hostName}-kernel" = self.nixosConfigurations.${hostName}.config.boot.kernelPackages.kernel; - } - ) {} (builtins.attrNames self.nixosConfigurations) ); }; }