From 3849ccdf8faf5a5f95f9e55e50ce39d5aa20a5d3 Mon Sep 17 00:00:00 2001 From: Random936 Date: Sun, 26 Apr 2026 13:04:37 -0400 Subject: [PATCH] Disabled ZSH syntax highlighting; updated ollama host to be wildcard --- config/ai.nix | 11 ++++++----- home/modules/zsh.nix | 1 - 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/ai.nix b/config/ai.nix index 30e6506..ed501c6 100644 --- a/config/ai.nix +++ b/config/ai.nix @@ -37,17 +37,18 @@ services.ollama = { enable = true; - package = pkgs.ollama-cuda.override { - cudaArches = [ - "61" - ]; - }; + host = "0.0.0.0"; openFirewall = true; # Make sure this path is created and has the permissions of ollama:ollama. models = "/mnt/storage/models"; environmentVariables = { OLLAMA_CONTEXT_LENGTH = "8192"; }; + package = pkgs.ollama-cuda.override { + cudaArches = [ + "61" + ]; + }; }; # NGINX Reverse Proxy Setup diff --git a/home/modules/zsh.nix b/home/modules/zsh.nix index 0d5e86e..b089130 100644 --- a/home/modules/zsh.nix +++ b/home/modules/zsh.nix @@ -25,7 +25,6 @@ enable = true; enableCompletion = true; autosuggestion.enable = true; - syntaxHighlighting.enable = true; history.size = 100000000; shellAliases = {