From 41a704c506dbc84a2b7fa23b40a9af26e5cc15cf Mon Sep 17 00:00:00 2001 From: Yadunand Prem Date: Tue, 19 Aug 2025 14:11:27 +0800 Subject: [PATCH] feat: remove ollama from home --- penguin/configuration.nix | 3 +-- penguin/home.nix | 5 ----- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/penguin/configuration.nix b/penguin/configuration.nix index e39a521..421217f 100644 --- a/penguin/configuration.nix +++ b/penguin/configuration.nix @@ -21,7 +21,7 @@ networking.nftables.enable = true; networking.firewall = { enable = true; - allowedTCPPorts = [ 22 ]; + allowedTCPPorts = [ 22 3000 3001 ]; trustedInterfaces = [ "tailscale0" ]; }; @@ -35,7 +35,6 @@ }; programs.zsh.enable = true; - nix = { optimise = { automatic = true; diff --git a/penguin/home.nix b/penguin/home.nix index 0b6e08d..9ca049b 100644 --- a/penguin/home.nix +++ b/penguin/home.nix @@ -15,11 +15,6 @@ services.hyprpolkitagent.enable = true; services.cliphist.enable = true; - services.ollama = { - enable = true; - host = "0.0.0.0"; - port = 11434; - }; imports = [ (import ../modules/zsh.nix)