Enable IPv6-level forwarding.

I think I need this, but I'm not sure.
This commit is contained in:
Eli Ribble 2024-08-21 12:18:01 -07:00
parent 803ab7bd47
commit 574f9f7d83
1 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,11 @@
./hardware-configuration.nix
];
# Enable forwarding for containers
boot.kernel.sysctl = {
"net.ipv6.conf.all.forwarding" = 1;
};
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;