diff --git a/overlays/default.nix b/overlays/default.nix index 9ef3e24..e01e64d 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -3,14 +3,14 @@ # When applied, the stable nixpkgs set (declared in the flake inputs) will be accessible through 'pkgs.stable' stable = final: _prev: { stable = import inputs.nixpkgs-stable { - system = final.system; + system = final.stdenv.hostPlatform.system; config.allowUnfree = true; }; }; # When applied, the master nixpkgs set (declared in the flake inputs) will be accessible through 'pkgs.master' master = final: _prev: { master = import inputs.nixpkgs-master { - system = final.system; + system = final.stdenv.hostPlatform.system; config.allowUnfree = true; }; };