dotfiles.nix/nixos/fuchsia/services/ollama.nix
2024-08-08 09:02:42 +08:00

8 lines
143 B
Nix

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