From 60bbda30915fe591bd955add6b6ffd2900d7088e Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Fri, 8 Aug 2025 10:26:31 +0530 Subject: [PATCH] feat: Update ik_llama --- flake.lock | 6 +++--- nixos/ryu/services/default.nix | 2 +- nixos/ryu/services/llama.nix | 3 ++- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/flake.lock b/flake.lock index efe9cd41..21876ff5 100644 --- a/flake.lock +++ b/flake.lock @@ -1701,11 +1701,11 @@ "ik_llama": { "flake": false, "locked": { - "lastModified": 1753582432, - "narHash": "sha256-jEty/2inFD+OgarlWojwJQgP3sn8SkkFW81ZXhJyoBg=", + "lastModified": 1754576781, + "narHash": "sha256-DeXIbHb5RtPn70Tg+s90oxq7EDxHRlB1wi8UuJ1v00E=", "owner": "ikawrakow", "repo": "ik_llama.cpp", - "rev": "ae0ba31fd078282fe6ac675176862ed6955c52dc", + "rev": "58f3bda0ae66e2ddf9e09ed7fe2b6242b0f8bb73", "type": "github" }, "original": { diff --git a/nixos/ryu/services/default.nix b/nixos/ryu/services/default.nix index 11261a80..7531f66d 100644 --- a/nixos/ryu/services/default.nix +++ b/nixos/ryu/services/default.nix @@ -4,7 +4,7 @@ # ./sunshine.nix # ./zerotier.nix # ./dnscrypt.nix - # ./ollama.nix + ./ollama.nix ./llama.nix ./tailscale.nix ./samba.nix diff --git a/nixos/ryu/services/llama.nix b/nixos/ryu/services/llama.nix index be9d9bcd..1c900af1 100644 --- a/nixos/ryu/services/llama.nix +++ b/nixos/ryu/services/llama.nix @@ -11,7 +11,8 @@ port = 11435; model = pkgs.fetchurl { url = "https://huggingface.co/unsloth/gpt-oss-20b-GGUF/resolve/main/gpt-oss-20b-F16.gguf"; - sha256 = "sha256-vE1SpG4diQiP88u0viGnyZ8LtotTUU19UGecnwfjOkE="; + # sha256 = "sha256-vE1SpG4diQiP88u0viGnyZ8LtotTUU19UGecnwfjOkE="; + sha256 = "sha256-kpeennNi4+MbFTuINkRi8CI9srQj7Q0eyKysG/4cbmI="; }; package = pkgs.ik_llama; };