Living on nixpkgs unstable now

This commit is contained in:
2024-10-06 14:13:12 +02:00
parent f19ce21672
commit f07ab92268
8 changed files with 37 additions and 32 deletions

View File

@ -6,12 +6,16 @@
# pull packages into your overlay.
#
# All other arguments for this function are your flake inputs.
{ nixpkgs-unstable, ... }:
{ nixpkgs-stable, nixpkgs-unstable, ... }:
final: prev: {
# unstable = nixpkgs-unstable.legacyPackages.${prev.system};
# use this variant if unfree packages are needed:
unstable = import nixpkgs-unstable {
system = prev.system;
config.allowUnfree = true;
};
# use this variant if unfree packages are needed:
stable = import nixpkgs-stable {
system = prev.system;
config.allowUnfree = true;
};
}