flake.nix: add hydraJobs

Este commit está contenido en:
Astro 2021-03-13 03:44:39 +01:00
padre 5007b929ae
commit 449cac3176
Se han modificado 1 ficheros con 4 adiciones y 1 borrados

Ver fichero

@ -5,7 +5,7 @@
let
systems = [ "x86_64-linux" "i686-linux" "aarch64-linux" ];
forSystems = nixpkgs.lib.genAttrs systems;
in {
in rec {
packages = forSystems (system:
import ./default.nix {
pkgs = nixpkgs.legacyPackages.${system};
@ -16,6 +16,9 @@
self.packages.${system}.ticker-serve
);
hydraJobs =
packages.${builtins.head systems};
devShell = import ./shell.nix {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
};