tangled
alpha
login
or
join now
nel.pet
/
cyclamen
4
fork
atom
NixOS and Home Manager config
4
fork
atom
overview
issues
pulls
pipelines
chore(ssh): update to new options
nel.pet
3 months ago
882527f7
ab28510f
verified
This commit was signed with the committer's
known signature
.
nel.pet
SSH Key Fingerprint:
SHA256:Zd+mWw4EweOfjYKNMYyVtMSN7oj+SBabmubG4RThVEI=
+13
-1
1 changed file
expand all
collapse all
unified
split
modules
home
ssh.nix
+13
-1
modules/home/ssh.nix
···
1
1
{ config, ... }: {
2
2
programs.ssh = {
3
3
enable = true;
4
4
-
addKeysToAgent = "yes";
4
4
+
enableDefaultConfig = false;
5
5
matchBlocks = {
6
6
+
"*" = {
7
7
+
forwardAgent = false;
8
8
+
addKeysToAgent = "yes";
9
9
+
compression = false;
10
10
+
serverAliveInterval = 0;
11
11
+
serverAliveCountMax = 3;
12
12
+
hashKnownHosts = false;
13
13
+
userKnownHostsFile = "~/.ssh/known_hosts";
14
14
+
controlMaster = "no";
15
15
+
controlPath = "~/.ssh/master-%r@%n:%p";
16
16
+
controlPersist = "no";
17
17
+
};
6
18
"nixos-shell" = {
7
19
hostname = "localhost";
8
20
port = 2222;