fix dns
This commit is contained in:
parent
5ab92fc676
commit
316dcc2c95
1 changed files with 9 additions and 1 deletions
|
|
@ -1,7 +1,15 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
boot.kernel.sysctl."net.ipv6.conf.all.forwarding" = true;
|
||||
boot.kernel.sysctl = {
|
||||
"net.ipv6.conf.all.forwarding" = true;
|
||||
"net.ipv4.conf.all.forwarding" = true;
|
||||
};
|
||||
|
||||
networking.firewall.interfaces.podman1 = {
|
||||
allowedTCPPorts = [ 53 ];
|
||||
allowedUDPPorts = [ 53 ];
|
||||
};
|
||||
|
||||
virtualisation.podman = {
|
||||
enable = true;
|
||||
|
|
|
|||
Loading…
Reference in a new issue