Skip to content

Commit

Permalink
fix: limit builds to x86_64-linux for hydra
Browse files Browse the repository at this point in the history
  • Loading branch information
icecreammatt committed Dec 16, 2023
1 parent 5adeb0b commit bd17882
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
};

outputs = { self, nixpkgs, utils, naersk }:
utils.lib.eachDefaultSystem (system:
# utils.lib.eachDefaultSystem (system:
utils.lib.eachSystem ["x86_64-linux"] (system:
let
pkgs = import nixpkgs { inherit system; };
naersk-lib = pkgs.callPackage naersk { };
Expand Down

0 comments on commit bd17882

Please sign in to comment.