dotfiles/nix/configs/ollama.nix

8 lines
156 B
Nix
Raw Normal View History

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