dotfiles/modules/nixos/hardware/networking.nix

26 lines
519 B
Nix
Raw Normal View History

{ config, lib, ... }: {
2022-12-21 21:18:03 +00:00
config = lib.mkIf config.physical {
2022-12-21 21:18:03 +00:00
networking.useDHCP = true;
2022-12-21 21:18:03 +00:00
2023-03-06 04:46:12 +00:00
networking.firewall.allowPing = lib.mkIf config.server true;
# DNS service discovery
services.avahi = {
enable = true;
domainName = "local";
2023-07-18 03:52:37 +00:00
ipv6 = false; # Should work either way
# Resolve local hostnames using Avahi DNS
nssmdns = true;
publish = {
enable = true;
addresses = true;
domain = true;
workstation = true;
};
};
2022-12-21 21:18:03 +00:00
};
2022-04-29 02:25:05 +00:00
}