diff options
author | Alan Pearce | 2025-03-09 10:39:37 +0100 |
---|---|---|
committer | Alan Pearce | 2025-03-09 10:39:37 +0100 |
commit | 09fb9945f5b0387d502721aca64122a25bf22861 (patch) | |
tree | df4401f734e4175eeacd94d6ddf1058ec686f0ce | |
parent | 532e47dba876af03c2b034adde633c124d827ba1 (diff) | |
download | nixfiles-09fb9945f5b0387d502721aca64122a25bf22861.tar.lz nixfiles-09fb9945f5b0387d502721aca64122a25bf22861.tar.zst nixfiles-09fb9945f5b0387d502721aca64122a25bf22861.zip |
marvin: restart ollama on updates
-rw-r--r-- | user/marvin.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user/marvin.nix b/user/marvin.nix index 8dda1fad..43a7cd19 100644 --- a/user/marvin.nix +++ b/user/marvin.nix @@ -32,7 +32,7 @@ ollama = { enable = true; config = { - ProgramArguments = [ "/Users/alan/.local/state/nix/profile/bin/ollama" "serve" ]; + ProgramArguments = [ "${pkgs.ollama}/bin/ollama" "serve" ]; RunAtLoad = true; KeepAlive = true; WorkingDirectory = "/Users/alan"; |