From ec0b805a31467094da1a4aaeb8580516eccf4586 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Sun, 6 Apr 2025 20:42:33 +0200 Subject: [PATCH] feat: disable ollama and open-webui start on boot. --- modules/linux/nixos/ollama.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/linux/nixos/ollama.nix b/modules/linux/nixos/ollama.nix index 3fb822a..8fe2d62 100644 --- a/modules/linux/nixos/ollama.nix +++ b/modules/linux/nixos/ollama.nix @@ -16,5 +16,8 @@ services.open-webui = { enable = true; }; + + systemd.services.ollama.wantedBy = lib.mkForce []; + systemd.services.open-webui.wantedBy = lib.mkForce []; }; }