universe/hosts/nixos/ollama/default.nix

15 lines
273 B
Nix
Raw Normal View History

2025-03-02 11:53:58 +00:00
{
pkgs,
config,
...
}: {
services.ollama = {
enable = true;
# acceleration = "rocm";
# environmentVariables = {
# HCC_AMDGPU_TARGET = "gfx1032"; # used to be necessary, but doesn't seem to anymore
# };
# rocmOverrideGfx = "10.3.1";
};
}