Fix network for updated nix.

This commit is contained in:
Tom Alexander 2026-02-14 12:34:24 -05:00
parent fc473c00da
commit 4b9322ab0d
Signed by: talexander
GPG Key ID: 36C99E8B3C39D85F
2 changed files with 11 additions and 4 deletions

View File

@ -43,7 +43,14 @@
... ...
}: }:
let let
forAllSystems = nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed; forAllSystems =
func:
builtins.listToAttrs (
map (system: {
name = system;
value = func system;
}) nixpkgs.lib.systems.flakeExposed
);
nodes = { nodes = {
controller0 = { controller0 = {
system = "x86_64-linux"; system = "x86_64-linux";

View File

@ -42,9 +42,9 @@
services.resolved = { services.resolved = {
enable = true; enable = true;
# dnssec = "true"; # dnssec = "true";
domains = [ "~." ]; settings.Resolve.Domains = [ "~." ];
fallbackDns = [ ]; settings.Resolve.FallbackDNS = [ ];
# dnsovertls = "true"; # settings.Resolve.DNSOverTLS = "true";
}; };
# Without this, systemd-resolved will send DNS requests for <X>.home.arpa to the per-link DNS server (172.16.0.1) which does not support DNS-over-TLS. This leads to the connection hanging and timing out. This causes firefox startup to take an extra 10+ seconds. # Without this, systemd-resolved will send DNS requests for <X>.home.arpa to the per-link DNS server (172.16.0.1) which does not support DNS-over-TLS. This leads to the connection hanging and timing out. This causes firefox startup to take an extra 10+ seconds.