summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorMartin Schwaighofer <mschwaig@users.noreply.github.com>2024-01-28 12:59:43 +0100
committerPhilip Taron <philip.taron@gmail.com>2024-02-03 13:13:07 -0600
commit60ecf099eddfe70fec797ef6790572e452054add (patch)
treeb9230182686ff9f27f67e53713bf8a1fdd109063 /flake.nix
parente920ed393d989ed35625ddaf182ebb52cda07fcd (diff)
add Vulkan support to Nix flake
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index a776ba02..ad2f9b29 100644
--- a/flake.nix
+++ b/flake.nix
@@ -157,6 +157,7 @@
mpi-cpu = config.packages.default.override { useMpi = true; };
mpi-cuda = config.packages.default.override { useMpi = true; };
+ vulkan = config.packages.default.override { useVulkan = true; };
}
// lib.optionalAttrs (system == "x86_64-linux") {
rocm = config.legacyPackages.llamaPackagesRocm.llama-cpp;