flake.nix: drop extraneous hydraJobs.${hostName}-kernel

This commit is contained in:
Astro 2022-01-08 18:17:28 +01:00
parent 84085a0fcc
commit cd5ada41ad
1 changed files with 0 additions and 9 deletions

View File

@ -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)
);
};
}