diff options
-rw-r--r-- | third_party/default.nix | 4 | ||||
-rw-r--r-- | third_party/overlays/tvl.nix | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/third_party/default.nix b/third_party/default.nix index 493301102fd8..874aecd3e7b5 100644 --- a/third_party/default.nix +++ b/third_party/default.nix @@ -12,7 +12,7 @@ # other folders below //third_party, other than the ones mentioned # above. -{ pkgs, depot, ... }: +{ pkgs, depot, localSystem, ... }: { # Expose a partially applied NixOS, expecting an attribute set with @@ -27,7 +27,7 @@ nixos = { configuration , specialArgs ? { } - , system ? builtins.currentSystem + , system ? localSystem , ... }: let diff --git a/third_party/overlays/tvl.nix b/third_party/overlays/tvl.nix index 80f6f04fcf88..d0a0d5581cd5 100644 --- a/third_party/overlays/tvl.nix +++ b/third_party/overlays/tvl.nix @@ -1,6 +1,6 @@ # This overlay is used to make TVL-specific modifications in the # nixpkgs tree, where required. -{ depot, ... }: +{ depot, localSystem, ... }: self: super: let @@ -30,8 +30,8 @@ in nix = (import "${nixSrc}/release.nix" { nix = nixSrc; nixpkgs = super.path; - systems = [ builtins.currentSystem ]; - }).build."${builtins.currentSystem}"; + systems = [ localSystem ]; + }).build."${localSystem}"; nix_latest = super.nix; |