diff --git a/system/programs/unbound.nix b/system/programs/unbound.nix index 192f201..541aec4 100644 --- a/system/programs/unbound.nix +++ b/system/programs/unbound.nix @@ -9,6 +9,13 @@ in config = lib.mkIf cfg.enable { networking.networkmanager.dns = "none"; - services.unbound.enable = true; + services.unbound = { + enable = true; + settings = { + server = { + prefetch = true; + }; + }; + }; }; }