configurations for my servers and desktops
nix nixos flake dots dotfiles

fix: enable beets

+1 -26
+1
hosts/bluepill/default.nix
··· 1 1 {pkgs, ...}: { 2 2 imports = [ 3 3 ./hardware.nix 4 + ./modules/beets.nix 4 5 ./modules/blocky.nix 5 6 ./modules/homepage.nix 6 7 ./modules/immich.nix
-26
hosts/bluepill/modules/ollama.nix
··· 1 - {pkgs, ...}: { 2 - services.ollama = { 3 - enable = true; 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"]; 5 - syncModels = true; 6 - openFirewall = true; 7 - }; 8 - 9 - virtualisation = { 10 - docker.enable = true; 11 - oci-containers = { 12 - backend = "docker"; 13 - containers.open-webui = { 14 - image = "ghcr.io/open-webui/open-webui:main"; 15 - extraOptions = ["--network=host"]; 16 - environment = { 17 - OLLAMA_BASE_URL = "http://127.0.0.1:11434"; 18 - }; 19 - volumes = [ 20 - "/var/lib/open-webui:/app/backend/data" 21 - ]; 22 - autoStart = true; 23 - }; 24 - }; 25 - }; 26 - }