This commit is contained in:
KoenDR06 2025-12-23 19:46:22 +01:00
parent 7f5c5b718f
commit 2de1a62d2f
5 changed files with 246 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{...}: {
imports = [
./nginx.nix
./forgejo.nix
];
config = {
networking.nat = {
enable = true;
# Use "ve-*" when using nftables instead of iptables
internalInterfaces = ["ve-+"];
externalInterface = "eno1";
# Lazy IPv6 connectivity for the container
enableIPv6 = true;
};
};
}