dot.nix/hosts/global/core/networking.nix
Chris Toph 8999806111 Revise networking, proxy, and DNS configs for *ryot.foo zone
- Remove static host mappings from networking config
- Add reverse proxy settings for multiple subdomains
- Introduce DNSMASQ configuration with custom DNS records and firewall rules
- Update firewall UDP port settings and system stateVersion
2025-06-11 02:52:33 -04:00

16 lines
270 B
Nix

{
pkgs,
lib,
config,
...
}:
{
networking = {
dhcpcd.enable = false;
hostName = config.hostSpec.hostName;
networkmanager.enable = true;
useDHCP = lib.mkDefault true;
useHostResolvConf = false;
usePredictableInterfaceNames = true;
};
}