feat: remove ollama from home

This commit is contained in:
Yadunand Prem 2025-08-19 14:11:27 +08:00
parent 085bdaf84e
commit 41a704c506
Signed by: yadunut
SSH Key Fingerprint: SHA256:mOIk45aRevEBf+VbljXnmFlCYEUmp4cFprML5FtFAHo
2 changed files with 1 additions and 7 deletions

View File

@ -21,7 +21,7 @@
networking.nftables.enable = true; networking.nftables.enable = true;
networking.firewall = { networking.firewall = {
enable = true; enable = true;
allowedTCPPorts = [ 22 ]; allowedTCPPorts = [ 22 3000 3001 ];
trustedInterfaces = [ "tailscale0" ]; trustedInterfaces = [ "tailscale0" ];
}; };
@ -35,7 +35,6 @@
}; };
programs.zsh.enable = true; programs.zsh.enable = true;
nix = { nix = {
optimise = { optimise = {
automatic = true; automatic = true;

View File

@ -15,11 +15,6 @@
services.hyprpolkitagent.enable = true; services.hyprpolkitagent.enable = true;
services.cliphist.enable = true; services.cliphist.enable = true;
services.ollama = {
enable = true;
host = "0.0.0.0";
port = 11434;
};
imports = [ imports = [
(import ../modules/zsh.nix) (import ../modules/zsh.nix)