Files
homelab/hosts/thea/ollama.nix
Sin Ser'hao 56ffeaf5a0
Some checks failed
/ perform flake analysis (push) Successful in 37s
/ build hive configuration (push) Failing after 8m50s
format && add nix-serve for caching
2026-01-07 15:29:28 +01:00

21 lines
319 B
Nix

{ inputs, ... }:
{
# virtualisation.docker = {
# enable = true;
# storageDriver = "btrfs";
# };
services.ollama = {
enable = true;
openFirewall = true;
loadModels = [ ];
};
services.open-webui = {
enable = true;
openFirewall = true;
host = "0.0.0.0";
port = 8050;
};
}