This commit is contained in:
iFargle 2023-12-04 20:15:35 +09:00
parent 64bf51bfda
commit 83a45f7c96
2 changed files with 7 additions and 3 deletions

View file

@ -50,9 +50,6 @@
boot.kernel.sysctl = {
"net.ipv4.ip_forward" = true;
"net.ipv6.conf.enp0s13f0u1.disable_ipv6" = true;
"net.ipv6.conf.all.disable_ipv6" = true;
"net.ipv6.conf.wlp170s0.disable_ipv6" = true;
};
boot.initrd.services.udev.rules = ''

View file

@ -10,4 +10,11 @@
openFirewall = true;
confDir = "/etc/xrdp/conf";
};
# XRDP needs IPv6 disabled to function.
boot.kernel.sysctl = {
"net.ipv6.conf.enp0s13f0u1.disable_ipv6" = true;
"net.ipv6.conf.all.disable_ipv6" = true;
"net.ipv6.conf.wlp170s0.disable_ipv6" = true;
};
}