10 lines
154 B
Nix
10 lines
154 B
Nix
{...}: {
|
|
boot = {
|
|
kernel = {
|
|
sysctl = {
|
|
"net.ipv4.ip_forward" = 1;
|
|
"net.ipv6.conf.all.forwarding" = 1;
|
|
};
|
|
};
|
|
};
|
|
}
|