From eb04f4a56d76b52884f0c732e1d3d26f31d30b06 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Sat, 6 Dec 2025 12:37:22 -0500 Subject: [PATCH] 'system' has been renamed to/replaced by 'stdenv.hostPlatform.system' --- overlays/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }; };