Files
nix/hosts/common/features/networking.nix
T
Miguel Palhas bc8a219f16 wip
2025-06-15 09:26:50 +01:00

27 lines
383 B
Nix

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