Fix resolving local names with resolved

nazuna
Simon Bruder 2023-04-11 11:33:17 +02:00
parent f05ee27364
commit 91e739c91b
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 10 additions and 2 deletions

View File

@ -128,8 +128,16 @@
"de_DE.UTF-8/UTF-8"
]);
# Set systemd-resolveds fallback to Quad9 (instead of cloudflare/google)
services.resolved.fallbackDns = [ "9.9.9.9" "149.112.112.112" "2620:fe::fe" "2620:fe::9" ];
services.resolved = {
# Set systemd-resolveds fallback to Quad9 (instead of cloudflare/google)
fallbackDns = [ "9.9.9.9" "149.112.112.112" "2620:fe::fe" "2620:fe::9" ];
# Allow resolving single lable hostnames (e.g., hostnames on the local network)
llmnr = "false";
# resolved does not automatically append the search domain (for whatever reason)
extraConfig = ''
ResolveUnicastSingleLabel=yes
'';
};
}
(lib.mkIf config.sbruder.full {
services.fwupd.enable = true;