Files
nix-config/systems/modules/ollama.nix
2026-03-20 22:38:44 +01:00

11 lines
136 B
Nix

{ pkgs, ... }:
{
services.ollama = {
enable = true;
package = pkgs.ollama-cuda;
};
services.open-webui.enable = true;
}