nixos/ssh: cleanup UseDNS setting

This commit is contained in:
Sandro 2021-08-12 12:13:10 +02:00 committed by GitHub
parent 411a5246c0
commit 0a31b7df57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -553,11 +553,7 @@ in
LogLevel ${cfg.logLevel}
${if cfg.useDns then ''
UseDNS yes
'' else ''
UseDNS no
''}
UseDNS ${if cfg.useDns then "yes" else "no"}
'';