config

NixOS config
Log | Files | Refs | README | LICENSE

commit 8bc355786fac4d71efa04427a2c198cb77813e8b (tree)
parent 6e3512745f4b707e5a53be6e1d077e337d9e34ef
Author: Motiejus Jakštys <motiejus@jakstys.lt>
Date:   Thu, 21 Nov 2024 06:54:12 +0200

fix tailscaled dns

Diffstat:
Mmodules/services/tailscale/default.nix | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/modules/services/tailscale/default.nix b/modules/services/tailscale/default.nix @@ -34,7 +34,9 @@ in enable = true; extraUpFlags = [ "--operator=${config.mj.username}" - #"--accept-dns=${if cfg.acceptDNS then "true" else "false"}" + ]; + extraSetFlags = [ + "--accept-dns=${if cfg.acceptDNS then "true" else "false"}" ]; }; networking.firewall.checkReversePath = "loose";