From eeba9331acc66cfecde90ea6dc1afb6c13469ef4 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Wed, 22 Jan 2025 17:20:12 +0300 Subject: [PATCH] Ollama: Use module from master. --- config/Ollama.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/Ollama.nix b/config/Ollama.nix index edac282..20c7033 100644 --- a/config/Ollama.nix +++ b/config/Ollama.nix @@ -1,5 +1,6 @@ { config, + inputs, lib, pkgsUnstable, ... @@ -8,6 +9,9 @@ let cfg = config.module.ollama; in { + disabledModules = [ "services/misc/ollama.nix" ]; + imports = [ "${inputs.nixpkgsMaster}/nixos/modules/services/misc/ollama.nix" ]; + config = lib.mkIf cfg.enable { services.ollama = { enable = true;