dotfiles.nix/nixos/fuchsia/services/ollama.nix

10 lines
146 B
Nix

{ ... }:
{
# Get up and running with large language models locally.
services.ollama = {
enable = true;
acceleration = "rocm";
};
}