From dc4ff6d8d2a70fa6c8c204d401e98b6fe1ba114d Mon Sep 17 00:00:00 2001 From: Cookiez Date: Wed, 8 Apr 2026 09:23:09 +0200 Subject: [PATCH] Changed grub timeout to 5 sec and disabled ollama service --- modules/configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/configuration.nix b/modules/configuration.nix index 29506d4..5c3c52b 100644 --- a/modules/configuration.nix +++ b/modules/configuration.nix @@ -62,7 +62,7 @@ footer = true; }; - timeout = 10; + timeout = 5; }; }; @@ -124,7 +124,7 @@ # List services that you want to enable: services = { ollama = { - enable = true; + enable = false; # Optional: load models on startup #loadModels = [ ... ]; };