This commit is contained in:
Lilith 2025-04-14 23:46:25 +02:00
parent 8d4db8e8ca
commit 04c6cd8cd9
No known key found for this signature in database
GPG key ID: 272C807BD91F8446
12 changed files with 81 additions and 19 deletions

View file

@ -0,0 +1,6 @@
{ config, lib, ... }:
{
options.ollama.enable = lib.mkEnableOption "Enable Ollama server /w GPU acceleration";
config.services.ollama = lib.mkIf config.ollama.enable { enable = true; };
}