10 lines
172 B
Nix
10 lines
172 B
Nix
{...}: {
|
|
nixpkgs.config = {
|
|
allowUnfree = true;
|
|
allowBroken = true;
|
|
allowAliases = true;
|
|
allowInsecure = true;
|
|
allowUnfreePredicate = _: true;
|
|
};
|
|
}
|