From 7775fd266d4348296d5b6c4359906c06c2805684 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Tue, 6 Aug 2024 09:07:33 +0200 Subject: [PATCH] fix: correct syntax error in resolved extraConfig The extraConfig for resolved had an incorrect semicolon causing configuration issues. This change removes the semicolon to ensure proper configuration loading. --- systems/x86_64-linux/x1/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/x86_64-linux/x1/default.nix b/systems/x86_64-linux/x1/default.nix index 211c755..1694b0a 100644 --- a/systems/x86_64-linux/x1/default.nix +++ b/systems/x86_64-linux/x1/default.nix @@ -28,7 +28,7 @@ with lib.metacfg; services.resolved.enable = true; services.resolved.dnssec = "allow-downgrade"; services.resolved.extraConfig = '' - ResolveUnicastSingleLabel=yes; + ResolveUnicastSingleLabel=yes ''; systemd.packages = [ pkgs.cloudflare-warp ]; # for warp-cli