Update inputs
Some checks failed
CI / Check, build and cache nixfiles (push) Failing after 6m18s

This commit is contained in:
2026-01-20 13:33:38 +00:00
parent 7951c777cb
commit f1dc04ec4b
14 changed files with 95 additions and 61 deletions

View File

@@ -13,13 +13,21 @@ in
};
services.resolved = {
# Explicitly unset fallback DNS (Nix module will not allow for a blank config)
# TODO: Remove if-else when 26.05 releases
} // (if config.system.nixos.release == "25.11:u-25.11" then {
domains = [ config.networking.domain ];
# Explicitly unset fallback DNS (Nix module will not allow for a blank config)
extraConfig = ''
FallbackDNS=
Cache=no-negative
'';
};
} else {
settings.Resolve = {
Domains = [ config.networking.domain ];
FallbackDNS = "";
Cache = "no-negative";
};
});
}
(mkIf config.my.build.isDevVM {