From 236d0f60b496551f7582f0fb37cf1742d8b002fd Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 25 Nov 2021 15:34:48 -0500 Subject: [PATCH] fix(hardware/ppu): add pred to any --- modules/modules/hardware/gpu.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/modules/hardware/gpu.nix b/modules/modules/hardware/gpu.nix index 89e2c30..4b1ff15 100644 --- a/modules/modules/hardware/gpu.nix +++ b/modules/modules/hardware/gpu.nix @@ -12,7 +12,7 @@ in }; config = mkMerge [ - (mkIf (any (with cfg; [ amdgpu nvidia intel ])) { + (mkIf (any (v: v) (with cfg; [ amdgpu nvidia intel ])) { hardware.opengl = { enable = true; driSupport = true;