automatic1111-webui-nix/README.md

27 lines
1.2 KiB
Markdown
Raw Normal View History

2022-12-31 13:05:29 +03:00
# [AUTOMATIC1111/stable-diffusion-webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui) for CUDA on NixOS
2022-12-31 13:02:46 +03:00
2023-01-02 16:39:30 +03:00
This is literally just a `shell.nix`/`flake.nix` for stable-diffusion-webui using CUDA on NixOS.
2022-12-31 13:02:46 +03:00
This currently doesn't support AMD cards (I don't have one) but feel free to contribute.
## Usage
```bash
git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui
git clone https://github.com/virchau13/automatic1111-webui-nix
2023-01-02 16:10:31 +03:00
cp automatic1111-webui-nix/*.nix stable-diffusion-webui/
2022-12-31 13:02:46 +03:00
cd stable-diffusion-webui
nix shell # or `nix-shell` if you're not using flakes
# just use `./webui.sh` to run it, it'll install all the rest automatically
# follow the tutorials at the original project for setting up Stable Diffusion / GFPGAN / whatever
```
You might want to switch to high performance mode on battery-powered devices.
2023-01-02 16:39:30 +03:00
## Is this completely pure?
This is just a Nix shell for bootstrapping the web UI, not an actual pure flake; the `./webui.sh` will still install
a bunch of Python packages (into a venv, so not polluting your system) when you run it.
2022-12-31 13:02:46 +03:00
## Credits
- AUTOMATIC1111 for obvious reasons.
- polypoyo for [the original draft of this](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/4736).