25 lines
345 B
Nix
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"
|
|
# ];
|
|
# };
|
|
}
|