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)