ollama: service init

This commit is contained in:
Kevin Baensch 2024-12-21 20:53:58 +01:00
parent 601f462ded
commit 56d96eaf2c
Signed by: derped
GPG key ID: C0F1D326C7626543

12
services/ollama.nix Normal file
View file

@ -0,0 +1,12 @@
{
config,
lib,
...
}:
with lib;
mkIf (elem "ollama" config.machine.services) {
services.ollama = {
enable = true;
};
}