Fix unstable overlay

This commit is contained in:
Julian Mutter 2025-02-28 18:52:53 +01:00
parent 5e224b9c3f
commit 533256cca6

View File

@ -6,15 +6,13 @@
# pull packages into your overlay.
#
# All other arguments for this function are your flake inputs.
{ nixpkgs-stable, nixpkgs-unstable, ... }:
{ nixpkgs, nixpkgs-unstable, ... }:
final: prev: {
# 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 {
stable = import nixpkgs {
system = prev.system;
config.allowUnfree = true;
};