Skip to content

Commit 2fbca2a

Browse files
committed
fix(ssh): add IgnoreUnknown GSSAPIAuthentication and hostname aliases for smartphone and tablet
1 parent de19ba4 commit 2fbca2a

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

programs/openssh.nix

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,27 @@
88
programs.ssh = {
99
enable = true;
1010
enableDefaultConfig = false;
11+
extraConfig = ''
12+
IgnoreUnknown GSSAPIAuthentication
13+
'';
1114

1215
matchBlocks = {
1316
"*.ts.net 100.*" = {
1417
user = "brantes";
1518
identityFile = "~/.ssh/id_ed25519";
1619
};
1720

18-
"galaxy-s10 pedros-tab-s6-lite smartphone tablet" = {
21+
"smartphone" = {
22+
hostname = "galaxy-s10";
23+
port = 8022;
24+
};
25+
26+
"tablet" = {
27+
hostname = "pedros-tab-s6-lite";
28+
port = 8022;
29+
};
30+
31+
"galaxy-s10 pedros-tab-s6-lite" = {
1932
port = 8022;
2033
};
2134

0 commit comments

Comments
 (0)