From 370279b21e6b3761297d77b19356220b5b800c28 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 26 Sep 2024 19:04:41 -0400 Subject: [PATCH] disable ollama --- nix/etcnixos/system-nixos.nix | 36 +++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/nix/etcnixos/system-nixos.nix b/nix/etcnixos/system-nixos.nix index 2b115a9..5d2971f 100644 --- a/nix/etcnixos/system-nixos.nix +++ b/nix/etcnixos/system-nixos.nix @@ -99,25 +99,25 @@ localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers }; - services.ollama = { - enable = true; - acceleration = "rocm"; - environmentVariables = { - HCC_AMDGPU_TARGET = "gfx1031"; # used to be necessary, but doesn't seem to anymore - }; - rocmOverrideGfx = "10.3.1"; - }; + # services.ollama = { + # enable = true; + # acceleration = "rocm"; + # environmentVariables = { + # HCC_AMDGPU_TARGET = "gfx1031"; # used to be necessary, but doesn't seem to anymore + # }; + # rocmOverrideGfx = "10.3.1"; + # }; - services.open-webui = { - enable = true; - openFirewall = true; - port = 8082; - environment = { - # Disable authentication - WEBUI_AUTH = "False"; - PYDANTIC_SKIP_VALIDATING_CORE_SCHEMAS = "True"; - }; - }; + # services.open-webui = { + # enable = true; + # openFirewall = true; + # port = 8082; + # environment = { + # # Disable authentication + # WEBUI_AUTH = "False"; + # PYDANTIC_SKIP_VALIDATING_CORE_SCHEMAS = "True"; + # }; + # }; systemd.packages = with pkgs; [ lact ]; systemd.services.lactd.wantedBy = [ "multi-user.target" ];