configurations for my servers and desktops
nix nixos flake dots dotfiles

chore: remove caddy

-10
-10
modules/nixos/services/ollama.nix
··· 1 1 {pkgs, ...}: { 2 - networking.firewall.allowedTCPPorts = [8443]; 3 - 4 2 services.ollama = { 5 3 enable = true; 6 4 loadModels = ["deepseek-r1:latest" "deepseek-v2:latest" "qwen3-coder:latest" "qwen3-vl:latest" "qwen3:latest" "gemma3:latest" "nemotron-3-nano:latest" "functiongemma:latest" "olmo-3:latest" "gtp-oss:latest" "llama3:latest" "devstral-small-2:latest" "mistral:latest" "mistral-nemo:latest"]; ··· 24 22 autoStart = true; 25 23 }; 26 24 }; 27 - }; 28 - 29 - services.caddy = { 30 - enable = true; 31 - virtualHosts.":8443".extraConfig = '' 32 - encode gzip zstd 33 - reverse_proxy 127.0.0.1:8080 34 - ''; 35 25 }; 36 26 }