Initial router tweaks to enable forwarding and serial access.

This commit is contained in:
Nolan Darilek 2025-07-21 11:30:13 -04:00
parent 23dd040e00
commit 958e9bf84a

View file

@ -11,6 +11,10 @@
]; ];
boot = { boot = {
kernelParams = [ "console=ttyS0,115200" ];
kernel.sysctl = {
"net.ipv4.conf.all.forwarding" = 1;
};
loader = { loader = {
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
systemd-boot.enable = true; systemd-boot.enable = true;