nixos-config/modules/common/networking.nix

9 lines
195 B
Nix
Raw Normal View History

2025-09-04 10:21:17 +02:00
_: {
networking = {
nameservers = ["1.1.1.1" "8.8.8.8"];
# dhcpcd.extraConfig = "nohook resolv.conf";
2025-09-04 10:21:17 +02:00
firewall.enable = true;
2025-09-22 08:25:42 +02:00
interfaces.enp11s0.wakeOnLan.enable = true ;
2025-09-04 10:21:17 +02:00
};
}