Files
infra-nix/hosts/voyager/modules/boot.nix
T
2026-07-06 22:24:28 +02:00

14 lines
222 B
Nix

_:
{
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
kernel.sysctl = {
"net.ipv4.ip_forward" = 1;
"net.ipv6.conf.all.forwarding" = 1;
};
};
}