Skip to content

Commit d7d9c22

Browse files
committed
fix(services/ollama): disable Ollama service by default
- Changed `enable` from `true` to `false` in default.nix configuration - Ensures the service is not started automatically without user consent
1 parent f70a1ee commit d7d9c22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

home-manager/services/ollama/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{ pkgs }:
22
{
33
services.ollama = {
4-
enable = true;
4+
enable = false;
55
package = pkgs.ollama;
66
host = "0.0.0.0";
77
};

0 commit comments

Comments
 (0)