feat: add input for stable nixpkgs

This commit is contained in:
tux
2024-11-29 13:03:27 +05:30
parent 2eafcfe8a2
commit 12e59eedd7
5 changed files with 53 additions and 15 deletions

View File

@ -10,10 +10,10 @@
};
};
# When applied, the unstable nixpkgs set (declared in the flake inputs) will
# be accessible through 'pkgs.unstable'
unstable-packages = final: _prev: {
unstable = import inputs.nixpkgs-unstable {
# When applied, the stable nixpkgs set (declared in the flake inputs) will
# be accessible through 'pkgs.stable'
stable-packages = final: _prev: {
stable = import inputs.nixpkgs-stable {
system = final.system;
config.allowUnfree = true;
};