15 lines
273 B
Nix
15 lines
273 B
Nix
{
|
|
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";
|
|
};
|
|
}
|