diff --git a/configuration/desktop/networking.nix b/configuration/desktop/networking.nix index 51d7a56..5d3704e 100644 --- a/configuration/desktop/networking.nix +++ b/configuration/desktop/networking.nix @@ -2,12 +2,13 @@ { - networking.networkmanager.extraConfig = '' - [connectivity] - uri=http://ping.clerie.de/nm-check.txt - - [global-dns] - searches=net.clerie.de - ''; + networking.networkmanager.settings = { + connectivity = { + uri = "http://ping.clerie.de/nm-check.txt"; + }; + global-dns = { + searches = "net.clerie.de"; + }; + }; }