weilite: switch to dae in network module

This commit is contained in:
xinyangli 2025-04-10 13:00:06 +08:00
parent 1aad6589cf
commit 8b4a2e713b
No known key found for this signature in database
2 changed files with 8 additions and 6 deletions

View file

@ -25,6 +25,12 @@ in
useLocalResolver = true;
};
services.resolved.enable = mkIf cfg.localdns.enable false;
services.tailscale = mkIf cfg.localdns.enable {
extraUpFlags = [ "--accept-dns=false" ];
};
services.kresd = mkIf cfg.localdns.enable {
enable = true;
listenPlain = [ "127.0.0.1:53" ];