This commit is contained in:
2025-08-15 15:01:16 -05:00
parent a92cadc10b
commit 0722cf1c4f
2 changed files with 6 additions and 2 deletions

View File

@@ -93,8 +93,11 @@
networking = { networking = {
hostName = "homebox"; hostName = "homebox";
nameservers = [ "1.1.1.1" "1.0.0.1" ]; nameservers = lib.mkDefault [ "1.1.1.1" "1.0.0.1" ];
networkmanager.enable = true; networkmanager = {
enable = true;
dns = "none";
};
nftables = {}; nftables = {};
nat = { nat = {

View File

@@ -21,6 +21,7 @@
networking = { networking = {
nat.internalInterfaces = [ "ve-pihole" ]; nat.internalInterfaces = [ "ve-pihole" ];
nameservers = [ "192.168.100.28" ];
}; };
containers.pihole = { containers.pihole = {