Files
nixos-config/hosts/common/features/networking.nix
T
Miguel Palhas 3c3f66ee6d wip
2025-06-27 11:41:04 +01:00

25 lines
345 B
Nix

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