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.
This commit is contained in:
parent
31323f340f
commit
7775fd266d
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue