Fix unstable overlay
This commit is contained in:
parent
5e224b9c3f
commit
533256cca6
@ -6,15 +6,13 @@
|
|||||||
# pull packages into your overlay.
|
# pull packages into your overlay.
|
||||||
#
|
#
|
||||||
# All other arguments for this function are your flake inputs.
|
# All other arguments for this function are your flake inputs.
|
||||||
{ nixpkgs-stable, nixpkgs-unstable, ... }:
|
{ nixpkgs, nixpkgs-unstable, ... }:
|
||||||
final: prev: {
|
final: prev: {
|
||||||
# use this variant if unfree packages are needed:
|
|
||||||
unstable = import nixpkgs-unstable {
|
unstable = import nixpkgs-unstable {
|
||||||
system = prev.system;
|
system = prev.system;
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
};
|
};
|
||||||
# use this variant if unfree packages are needed:
|
stable = import nixpkgs {
|
||||||
stable = import nixpkgs-stable {
|
|
||||||
system = prev.system;
|
system = prev.system;
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user