diff options
author | Adrian Kummerlaender | 2023-12-11 10:25:31 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2023-12-11 10:25:31 +0100 |
commit | 3884275613c1cf84db36155947a95cc72b001891 (patch) | |
tree | 1f8331e2d8980f4f2577a743df307fe08f3af904 /host | |
parent | 6e7d84812d6a997b0db8af5b9e1bc6607fcfd05a (diff) | |
download | nixos_system-3884275613c1cf84db36155947a95cc72b001891.tar nixos_system-3884275613c1cf84db36155947a95cc72b001891.tar.gz nixos_system-3884275613c1cf84db36155947a95cc72b001891.tar.bz2 nixos_system-3884275613c1cf84db36155947a95cc72b001891.tar.lz nixos_system-3884275613c1cf84db36155947a95cc72b001891.tar.xz nixos_system-3884275613c1cf84db36155947a95cc72b001891.tar.zst nixos_system-3884275613c1cf84db36155947a95cc72b001891.zip |
atlas: Open up some ports to mesh
Diffstat (limited to 'host')
-rw-r--r-- | host/atlas.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/host/atlas.nix b/host/atlas.nix index 8c6dcc7..4771aa4 100644 --- a/host/atlas.nix +++ b/host/atlas.nix @@ -50,6 +50,10 @@ }; }; + networking.firewall = { + enable = true; + interfaces."wg0".allowedTCPPorts = [ 5900 8080 8888 ]; + }; services.gitlab-runner = { enable = true; services = { |