fix(nix-config): allow unfree packages in home-manager unstable overlay
parent
0141de5795
commit
4d4b30fc8f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue