From 0df26d4a48fa79f8e7509af9cb7a1c3d68c9de79 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Thu, 10 Oct 2024 16:52:09 +0100 Subject: [PATCH] Enable ollama service for work laptop --- system/Ronin.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/system/Ronin.nix b/system/Ronin.nix index 2276f932..882f11fb 100644 --- a/system/Ronin.nix +++ b/system/Ronin.nix @@ -19,5 +19,8 @@ ''; systemPackages = with pkgs; [ openfortivpn ]; }; - services.hardware.bolt.enable = true; + services = { + hardware.bolt.enable = true; + ollama.enable = true; + }; }