mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 17:26:12 +01:00
15 lines
214 B
Nix
15 lines
214 B
Nix
{
|
|
nixpkgs.config.cudaSupport = true;
|
|
|
|
services.ollama = {
|
|
enable = true;
|
|
acceleration = "cuda";
|
|
};
|
|
|
|
services.open-webui = {
|
|
enable = false;
|
|
host = "0.0.0.0";
|
|
openFirewall = true;
|
|
};
|
|
}
|