tangled
alpha
login
or
join now
devins.page
/
flake
0
fork
atom
configurations for my servers and desktops
nix
nixos
flake
dots
dotfiles
0
fork
atom
overview
issues
pulls
pipelines
fix: ip forwarding
devins.page
1 month ago
7a30ad16
18965f88
+4
-1
1 changed file
expand all
collapse all
unified
split
hosts
bluepill-proxy
modules
nftables.nix
+4
-1
hosts/bluepill-proxy/modules/nftables.nix
···
3
3
networking.firewall.allowedTCPPorts = [25565 23343];
4
4
networking.firewall.allowedUDPPorts = [25565 23343 24454 22232];
5
5
};
6
6
-
networking.enableIPv4Forwarding = true;
6
6
+
7
7
+
boot.kernel.sysctl = {
8
8
+
"net.ipv4.ip_forward" = 1;
9
9
+
};
7
10
8
11
networking.nftables = {
9
12
enable = true;