chore(Zephyrus): Added steam related programs to the unfree predicate
This commit is contained in:
parent
2b3fcd3168
commit
16f09b1174
1 changed files with 10 additions and 1 deletions
|
@ -51,7 +51,16 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
# NVIDIA
|
# NVIDIA
|
||||||
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) ["nvidia-x11" "nvidia-settings"];
|
nixpkgs.config.allowUnfreePredicate = pkg:
|
||||||
|
builtins.elem (lib.getName pkg) [
|
||||||
|
# NVIDIA
|
||||||
|
"nvidia-x11"
|
||||||
|
"nvidia-settings"
|
||||||
|
# Steam
|
||||||
|
"steam"
|
||||||
|
"steam-original"
|
||||||
|
"steam-run"
|
||||||
|
];
|
||||||
|
|
||||||
hardware.graphics.enable = true;
|
hardware.graphics.enable = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue