aboutsummaryrefslogtreecommitdiffstats
path: root/overlays
diff options
context:
space:
mode:
Diffstat (limited to 'overlays')
-rw-r--r--overlays/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/overlays/default.nix b/overlays/default.nix
index c39804a..6770529 100644
--- a/overlays/default.nix
+++ b/overlays/default.nix
@@ -12,6 +12,15 @@
# });
};
+ # When applied, the master nixpkgs set (declared in the flake inputs) will
+ # be accessible through 'pkgs.master'
+ master-packages = final: _prev: {
+ master = import inputs.nixpkgs-master {
+ system = final.system;
+ config.allowUnfree = true;
+ };
+ };
+
# When applied, the stable nixpkgs set (declared in the flake inputs) will
# be accessible through 'pkgs.stable'
stable-packages = final: _prev: {