Files
nix/hosts/common/features/networking.nix
T
Miguel Palhas 2d1bd96434 wip
2025-06-29 15:13:01 +01:00

25 lines
346 B
Nix

{ inputs, pkgs, ... }:
{
networking = {
networkmanager = {
enable = true;
};
};
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
# environment.etc.nsswitch.text = {
# hosts = [
# "files"
# "mdns4_minimal"
# "[NOTFOUND=return]"
# "dns"
# ];
# };
}