Add hydraJobs

This commit is contained in:
Malte Tammena 2022-09-12 16:45:57 +02:00
parent 4dea8e02b0
commit 67af9a5604

View file

@ -7,7 +7,7 @@
fup, fup,
nixpkgs, nixpkgs,
}: }:
fup.lib.eachDefaultSystem (system: let fup.lib.eachSystem [fup.lib.system.x86_64-linux] (system: let
pkgs = import nixpkgs {inherit system;}; pkgs = import nixpkgs {inherit system;};
in { in {
devShells = { devShells = {
@ -31,5 +31,7 @@
]; ];
}; };
}; };
hydraJobs = self.devShells.${system};
}); });
} }