From c9233f96ca79bd8be496808d05af5e14d4503e54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yannik=20R=C3=B6del?= Date: Mon, 28 Feb 2022 16:56:10 +0100 Subject: [PATCH] Update Hydra jobs --- flake.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index c3b9996..0d3b3a1 100644 --- a/flake.nix +++ b/flake.nix @@ -4,8 +4,8 @@ inputs.nixpkgs.url = "nixpkgs/nixos-unstable"; inputs.flake-utils.url = "github:numtide/flake-utils"; - outputs = {self, nixpkgs, flake-utils }: - flake-utils.lib.eachDefaultSystem (system: + outputs = {self, nixpkgs, flake-utils }: let + base = flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; }; @@ -92,6 +92,10 @@ hydraJobs = { container = packages.container; }; - } - ); + }); + in (base // { + hydraJobs.x86_64-linux = { + inherit (base.packages.x86_64-linux) container; + }; + }); }