dotfiles/nix/configs/ollama.nix

8 lines
153 B
Nix
Raw Normal View History

2024-04-28 11:35:35 +02:00
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
ollama
];
services.ollama.enable = true;
2024-04-28 11:35:35 +02:00
services.ollama.acceleration = "cuda";
}