We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
sunlei/zsh-ssh
1 parent 51adf51 commit f1302e6Copy full SHA for f1302e6
modules/apps/ssh.nix
@@ -4,7 +4,8 @@
4
enable = true;
5
includes = [
6
"~/.ssh/override_config"
7
- "${config.age.secrets.ssh_host_config.path}"
+ # "${config.age.secrets.ssh_host_config.path}" # `sunlei/zsh-ssh` can't resolve absolute path
8
+ "$~/.ssh/host_configuration"
9
];
10
matchBlocks."*" = {
11
addKeysToAgent = "no";
@@ -15,6 +16,6 @@
15
16
serverAliveInterval = 300;
17
serverAliveCountMax = 10;
18
};
- enableDefaultConfig = false; # this option will be deprecated, so don't use it.
19
+ enableDefaultConfig = false; # this option will be deprecated, so set it to false
20
21
}
0 commit comments