From 504b765606f02b610d74d259ddf2c85292e1f6c0 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Sat, 8 Feb 2025 03:19:30 -0800 Subject: add nix-topology; make configuration options less bad; restructure project a bit; add flake system looping --- nix/modules/ollama.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nix/modules/ollama.nix') diff --git a/nix/modules/ollama.nix b/nix/modules/ollama.nix index f9f4dc9..96ee918 100644 --- a/nix/modules/ollama.nix +++ b/nix/modules/ollama.nix @@ -1,7 +1,7 @@ { config, lib, ... }: { services.ollama = { - enable = lib.mkDefault config.monorepo.profiles.server.enable; + enable = lib.mkDefault config.monorepo.profiles.workstation.enable; acceleration = "cuda"; host = "0.0.0.0"; }; -- cgit