Skip to content

Commit

Permalink
nix/default.nix: call pkgsAArch64 with passed in system as localSystem
Browse files Browse the repository at this point in the history
This allows forcing the native build by passing in --argstr system …
  • Loading branch information
flokli committed Jul 15, 2024
1 parent e8ff203 commit d05619d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ let
++ pango.buildInputs;

pkgsAArch64 = import nixpkgs {
localSystem = builtins.currentSystem;
localSystem = system;
crossSystem = "aarch64-linux";
overlays = [ (import ./overlay.nix) ];
};
Expand Down

0 comments on commit d05619d

Please sign in to comment.