diff --git a/hosts/ymir/configuration.nix b/hosts/ymir/configuration.nix index 3447754..49cf568 100644 --- a/hosts/ymir/configuration.nix +++ b/hosts/ymir/configuration.nix @@ -97,7 +97,21 @@ services.ollama = { enable = true; acceleration = "cuda"; + loadModels = ["deepseek-r1:7b" "deepseek-r1:14b"]; }; + services.open-webui = { + enable = true; + port = 7070; + environment = { + SCARF_NO_ANALYTICS = "True"; + DO_NOT_TRACK = "True"; + ANONYMIZED_TELEMETRY = "False"; + WEBUI_AUTH = "False"; + ENABLE_LOGIN_FORM = "False"; + }; + }; + + system.stateVersion = "25.05"; # great taboo of the nixos world }