flake/nixos/packages/unfree/unfree.nix

23 lines
529 B
Nix
Raw Normal View History

2023-09-19 00:17:43 +00:00
{ lib, ... }:
{
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"nvidia-x11" # ../hardware/gpu/nvidia.nix
#"nvidia-settings"
#"nvidia-persistenced"
"xow_dongle-firmware" # ../hardware/accessories/xbox.nix
"facetimehd-firmware" # ../hardware/hardwares/imac-2017.nix
2023-10-31 09:07:16 +00:00
"osu-lazer-bin-2023.1026.0" # what?
2023-09-19 00:17:43 +00:00
"spotify"
"steam"
"steam-original"
2023-10-15 00:51:56 +00:00
#"discord"
#"google-chrome"
#"lunar-client"
#"microsoft-edge-stable"
#"qq"
2023-09-19 00:17:43 +00:00
];
}