tangled
alpha
login
or
join now
jaspermayone.com
/
dots
0
fork
atom
@jaspermayone.com's dotfiles
0
fork
atom
overview
issues
pulls
pipelines
alastor more ssh support
jaspermayone.com
1 month ago
e367d7a3
4a35ab9c
+8
1 changed file
expand all
collapse all
unified
split
hosts
alastor
configuration.nix
+8
hosts/alastor/configuration.nix
···
75
75
PasswordAuthentication = false;
76
76
PermitRootLogin = "prohibit-password";
77
77
KbdInteractiveAuthentication = false;
78
78
+
# Add non-ETM MACs for compatibility with Kamal/net-ssh
79
79
+
Macs = [
80
80
+
"hmac-sha2-512-etm@openssh.com"
81
81
+
"hmac-sha2-256-etm@openssh.com"
82
82
+
"umac-128-etm@openssh.com"
83
83
+
"hmac-sha2-512"
84
84
+
"hmac-sha2-256"
85
85
+
];
78
86
};
79
87
};
80
88