From 26d0f14bf39cae43e2556d9c8a4e3515cbded4c5 Mon Sep 17 00:00:00 2001 From: Chris Thompson Date: Wed, 20 Nov 2024 11:40:14 -0500 Subject: [PATCH] XDEBUG needs this port...determine how to limit this, if possible --- hosts/default/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index 5a40f7b..0b667fc 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -141,6 +141,8 @@ virtualisation.docker.storageDriver = "btrfs"; # Only when using BTRFS! (wolcen approved!) # Required for DDEV to add hosts files, if your DNS will not resolve addresses to localhost. environment.etc.hosts.mode = "0644"; + # For xdebug...verify actual necessity (...I still doubt it) + networking.firewall.allowedTCPPorts = [ 9003 ]; # Allow unfree packages nixpkgs.config.allowUnfree = true;