This commit is contained in:
Fabian Montero 2024-09-05 12:28:09 -06:00
commit c8791adf39
Signed by untrusted user: fabian
GPG key ID: 1FFAC35E1798174F
33 changed files with 1844 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{
pkgs,
config,
lib,
...
}:
with lib; {
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"discord"
"pycharm-professional"
"rar"
"spotify"
"spotify-unwrapped"
"steam"
"steam-original"
"steam-run"
"teams"
"vscode-extension-ms-vscode-cpptools"
"vmware-horizon-client"
"zoom"
];
}