nixos-config/modules/common/networking.nix
2025-10-05 08:20:57 +02:00

8 lines
198 B
Nix

_: {
networking = {
nameservers = ["1.1.1.1" "8.8.8.8"];
# dhcpcd.extraConfig = "nohook resolv.conf";
firewall.enable = true;
interfaces.enp11s0.wakeOnLan.enable = true;
};
}