homelab/hosts/n100/ollama.nix
lelu awen 28874ebb5f refactor gitea configuration in a module
updated: modules/gitea to put specific configuration in the module
updated: flake.nix to import the module in nodes
2025-09-18 18:51:56 +02:00

20 lines
317 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;
};
}