Nix configurations for my homelab
0

Configure Feed

Select the types of activity you want to include in your feed.

Update to resolved nix config to match the renamed nix options

+6 -4
+6 -4
modules/basic.nix
··· 58 58 acpid.enable = true; 59 59 resolved = { 60 60 enable = true; 61 - dnssec = "true"; 62 - dnsovertls = "true"; 63 - domains = [ "~." ]; 64 - fallbackDns = [ ]; 61 + settings.Resolve = { 62 + DNSSEC = true; 63 + DNSOverTLS = true; 64 + Domains = [ "~." ]; 65 + FallbackDNS = [ ]; 66 + }; 65 67 }; 66 68 }; 67 69