modules.system.server.ollama: use var nvidiaEnabled
All checks were successful
check / check (push) Successful in 29s

This commit is contained in:
Florian RICHER 2024-05-29 10:46:26 +02:00
parent 3bc86778ff
commit 03b8fb2d5d

View file

@ -15,7 +15,7 @@ in
services.ollama = {
enable = true;
acceleration = if config.modules.system.hardware.nvidia.enable then "cuda" else null;
acceleration = if nvidiaEnabled then "cuda" else null;
};
};
}