From 32b4afb61b5d8b278112fca672688818d0ca680a Mon Sep 17 00:00:00 2001 From: servius Date: Thu, 2 Jul 2026 17:11:37 +0530 Subject: [PATCH] feat: Added ollama --- nixos/ryu/services/default.nix | 1 + nixos/ryu/services/ollama.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 nixos/ryu/services/ollama.nix diff --git a/nixos/ryu/services/default.nix b/nixos/ryu/services/default.nix index eb1791d..d512e58 100644 --- a/nixos/ryu/services/default.nix +++ b/nixos/ryu/services/default.nix @@ -15,6 +15,7 @@ ./minecraft.nix ./monitoring.nix ./mullvad.nix + ./ollama.nix ./openrgb.nix ./openssh.nix ./pipewire.nix diff --git a/nixos/ryu/services/ollama.nix b/nixos/ryu/services/ollama.nix new file mode 100644 index 0000000..342725f --- /dev/null +++ b/nixos/ryu/services/ollama.nix @@ -0,0 +1,6 @@ +{pkgs, ...}: { + services.ollama = { + enable = true; + package = pkgs.ollama-cuda; + }; +} -- 2.51.2