From 8f7dba8365863103f095c6cb80c9981d899ec395 Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Wed, 10 Jan 2024 19:58:09 +0100 Subject: [PATCH] set cuda capaebilities --- systems/kami/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/systems/kami/default.nix b/systems/kami/default.nix index f851d92..ce3141a 100644 --- a/systems/kami/default.nix +++ b/systems/kami/default.nix @@ -50,7 +50,10 @@ }; nixpkgs = { - config = { cudaSupport = true; }; + config = { + cudaSupport = true; + cudaCapabilities = [ "8.6" ]; + }; hostPlatform = { system = "x86_64-linux"; config = "x86_64-unknown-linux-gnu";