added nixpkgs-master

This commit is contained in:
2024-11-02 21:26:42 -04:00
parent 2d0c2baee4
commit 9869f88a3e
5 changed files with 36 additions and 6 deletions

View File

@@ -6,4 +6,11 @@
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;
config.allowUnfree = true;
};
};
}