chore(access): remove nginx resolver

This commit is contained in:
arcnmx 2024-04-16 03:07:03 -07:00
parent 7c58462588
commit 280ec3af3e
2 changed files with 0 additions and 5 deletions

View file

@ -116,10 +116,6 @@ in {
access.freeipa = {
host = mkOptionDefault (config.lib.access.getAddressFor (config.lib.access.systemForService "freeipa").name "lan");
};
resolver.addresses = mkIf access.preread.enable (mkMerge [
(mkDefault [ "[::1]:5353" "127.0.0.1:5353" ])
(mkIf config.systemd.network.enable [ "127.0.0.53" ])
]);
defaultSSLListenPort = mkIf access.preread.enable access.preread.port;
stream = let
prereadConf = {

View file

@ -4,7 +4,6 @@
access,
...
}: let
inherit (lib.options) mkOption;
inherit (lib.modules) mkDefault;
inherit (lib.attrsets) mapAttrs;
inherit (config.services) nginx;