Skip to content

Commit

Permalink
Merge pull request #15 from atagen/master
Browse files Browse the repository at this point in the history
fixed nvidia typo
  • Loading branch information
gbtb authored Dec 3, 2022
2 parents c9db788 + 1a6ff3b commit 3f17c05
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,8 @@
};
overlay_nvidia = nixpkgs: pythonPackages:
{
torch = pythonPackages.torch.override {
cudaSupport = true;
};
torch = pythonPackages.torch-bin;
torchvision = pythonPackages.torchvision-bin;
};
in
{
Expand All @@ -200,7 +199,7 @@
python-self: python-super:
(overlay_default prev python-super) //
optional amd (overlay_amd prev python-super) //
optional nvidia (overlay_amd prev python-super) //
optional nvidia (overlay_nvidia prev python-super) //
optional webui (overlay_webui prev python-super) //
(overlay_pynixify python-self);
};
Expand Down

0 comments on commit 3f17c05

Please sign in to comment.