dotfiles/nix/configs/ollama.nix
2024-07-31 07:17:52 +02:00

8 lines
153 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
ollama
];
services.ollama.enable = true;
services.ollama.acceleration = "cuda";
}