fixed bind interfaces

This commit is contained in:
2025-01-04 18:51:51 -05:00
parent 1f5eda31b2
commit f10c3e7a8c
2 changed files with 11 additions and 15 deletions

View File

@ -86,26 +86,15 @@
# Core networking module (see ../../networking/core.nix)
networking = {
firewall = {
enable = true;
udpPorts = {
dns.enable = true;
};
};
firewall.enable = true;
networkmanager.enable = true;
};
# DNS module (see ../../networking/dns.nix)
dns = {
technitium = {
enable = true;
};
bind.enable = false;
technitium.enable = true;
};
# Enable dconf
programs.dconf.enable = true;
# Add username to groups "wheel" and "video" - more may be added here later
users.users.${userName}.extraGroups = ["wheel" "podman" "network"];