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

8 lines
143 B
Nix
Raw Permalink Normal View History

2024-08-08 09:02:42 +08:00
{...}: {
2024-07-26 09:01:05 +08:00
# Get up and running with large language models locally.
services.ollama = {
enable = true;
acceleration = "rocm";
};
}