kresd: no need to explicitly set nameserver

Since https://github.com/NixOS/nixpkgs/pull/124391, enabling kreasd also
sets `networking.resolvconf.useLocalResolver = true`.
This commit is contained in:
Robert Schütz 2021-05-25 18:35:14 +02:00 committed by lewo
parent 2ca02f32c8
commit 49074b7835

View File

@ -22,7 +22,6 @@ in
{
config = lib.mkIf (cfg.enable && cfg.localDnsResolver) {
services.kresd.enable = true;
networking.nameservers = [ "127.0.0.1" ];
};
}