Living on nixpkgs unstable now
This commit is contained in:
@ -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;
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user