nix: +nixosModules.unfree-predicate

This commit is contained in:
Primrose 2024-10-30 21:30:33 +01:00
parent b8691b4adc
commit 14d97d81bf
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 25 additions and 23 deletions

View file

@ -0,0 +1,20 @@
{ lib, ... }:
{
nixpkgs.config.allowUnfreePredicate =
pkg:
builtins.elem (lib.getName pkg) [
"discord"
"languagetool"
"brscan5"
"brscan5-etc-files"
"steam"
"steam-original"
"steam-run"
"vscode"
"code"
];
}