diff --git a/overlays/default.nix b/overlays/default.nix index 1f7d740..54f7d69 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -16,12 +16,11 @@ # }); }; - # When applied, the unstable nixpkgs set (declared in the flake inputs) will - # be accessible through 'pkgs.unstable' - stable-packages = final: _prev: { - stable = import inputs.nixpkgs-stable { - system = final.system; - config.allowUnfree = true; - }; - }; + # When applied, the stable nixpkgs set (declared in the flake inputs) will + # be accessible through 'pkgs.stable' + pkg-sets = ( + final: prev: { + stable = import inputs.nixos-stable {system = final.system;}; + } + ); }