dotfiles/modules/nixos/hardware/networking.nix
2023-07-18 02:00:38 +00:00

27 lines
487 B
Nix

{ config, lib, ... }: {
config = lib.mkIf config.physical {
networking.useDHCP = true;
networking.firewall.allowPing = lib.mkIf config.server true;
# DNS service discovery
services.avahi = {
enable = true;
domainName = "local";
publish = {
enable = true;
addresses = true;
domain = true;
workstation = true;
};
};
# Resolve local hostnames using Avahi DNS
services.avahi.nssmdns = true;
};
}