fix(nix-config): allow unfree packages in home-manager unstable overlay

This commit is contained in:
Michael Mandl 2023-07-07 09:21:09 +02:00
parent 0141de5795
commit 4d4b30fc8f
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7

View file

@ -15,14 +15,13 @@
theme = "dark"; # dark or light
nixpkgs-config = {
allowUnfree = true;
allowUnfreePredicate = (_: true);
allowUnfreePredicate = (pkg: true);
};
overlay-unstable = final: prev: {
unstable = import nixpkgs-unstable {
system = "x86_64-linux";
allowUnfree = true;
config.allowUnfreePredicate = (pkg: true);
};
};
in