nix-configs/nixos-modules/networkd-base.nix

9 lines
151 B
Nix
Raw Normal View History

2024-08-20 20:03:18 -04:00
{
2024-04-27 22:10:36 -04:00
systemd.network.enable = true;
networking.useNetworkd = true;
services.resolved = {
enable = true;
fallbackDns = [ "8.8.8.8" ];
};
}