summaryrefslogtreecommitdiff
path: root/hydraJobs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hydraJobs.nix')
-rw-r--r--hydraJobs.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/hydraJobs.nix b/hydraJobs.nix
deleted file mode 100644
index 9cc4617..0000000
--- a/hydraJobs.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- lib,
- self,
- withSystem,
- ...
-}:
-let
- ciSystem = "x86_64-linux";
- derivFromCfg = deriv: deriv.config.system.build.toplevel or deriv.activationPackage;
- mapCfgsToDerivs = lib.mapAttrs (lib.const derivFromCfg);
-in
-{
- flake.hydraJobs = withSystem ciSystem (
- { pkgs, self', ... }:
- {
- inherit (self') checks;
- inherit (self') devShells;
- darwinConfigurations = mapCfgsToDerivs self.darwinConfigurations;
- homeConfigurations = mapCfgsToDerivs self.homeConfigurations;
- nixosConfigurations = mapCfgsToDerivs self.nixosConfigurations // {
- # please add aarch64 runners github...please...
- atlas = lib.deepSeq (derivFromCfg self.nixosConfigurations.atlas).drvPath pkgs.emptyFile;
- };
- }
- );
-}