This commit is contained in:
2025-07-23 21:28:07 +03:00
parent b480c94188
commit 611774b200
2 changed files with 15 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{ inputs, ... }@flakeContext:
{
config,
lib,
pkgs,
...
}:
{
networking.firewall = {
allowedTCPPorts = [ 443 ];
allowedUDPPorts = [ 443 ];
};
environment.systemPackages = with pkgs; [ xray ];
}