1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 16:41:04 +01:00
This commit is contained in:
khaneliman 2025-08-29 19:47:33 +00:00
parent e23d2f4e59
commit 1891bec349

View file

@ -66468,7 +66468,20 @@ boolean</p>
</dt>
<dd>
<p>Whether to enable or not the old default config values.
This option will become deprecated in the future.</p>
This option will become deprecated in the future.
For an equivalent, copy and paste the following
code snippet in your config:</p><p>programs.ssh.matchBlocks.“*” = {
forwardAgent = false;
addKeysToAgent = “no”;
compression = false;
serverAliveInterval = 0;
serverAliveCountMax = 3;
hashKnownHosts = false;
userKnownHostsFile = “~/.ssh/known_hosts”;
controlMaster = “no”;
controlPath = “~/.ssh/master-%r@%n:%p”;
controlPersist = “no”;
};</p>
<p><span class="emphasis"><em>Type:</em></span>
boolean</p>