From 7ea5daa492c082e27483854fae6aad600559702b Mon Sep 17 00:00:00 2001 From: Lyndon Sanche Date: Wed, 4 Sep 2024 11:27:08 -0600 Subject: [PATCH] common-gpu-nvidia: Add kepler --- common/gpu/nvidia/kepler/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 common/gpu/nvidia/kepler/default.nix diff --git a/common/gpu/nvidia/kepler/default.nix b/common/gpu/nvidia/kepler/default.nix new file mode 100644 index 0000000..f8d89a1 --- /dev/null +++ b/common/gpu/nvidia/kepler/default.nix @@ -0,0 +1,7 @@ +{lib, ...}: +{ + imports = [ ../. ]; + + # The open source driver does not support Kepler GPUs. + hardware.nvidia.open = false; +}