changed unfree rules

This commit is contained in:
2025-06-08 18:21:05 +03:00
parent ef204b0dd4
commit c0c1da930e
6 changed files with 21 additions and 18 deletions
+12
View File
@@ -0,0 +1,12 @@
{ lib, ... }:
{
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"nvidia-x11"
"nvidia-settings"
"steam"
"steam-unwrapped"
"steam-original"
"steam-run"
];
}