wenche: Fix nvidia driver. flake: add shells/cuda.
Some checks failed
Eval nix flake / evals (pull_request) Failing after 14s
Eval nix flake / evals (push) Successful in 30m39s

This commit is contained in:
2025-02-22 19:44:23 +01:00
parent bdaa765dbb
commit 4f28815018
4 changed files with 36 additions and 2 deletions

View File

@@ -160,6 +160,15 @@
devShells = forAllSystems (system: {
default = nixpkgs.legacyPackages.${system}.callPackage ./shell.nix { };
cuda = let
cuda-pkgs = import nixpkgs {
inherit system;
config = {
allowUnfree = true;
cudaSupport = true;
};
};
in cuda-pkgs.callPackage ./shells/cuda.nix { };
});
packages = {