1
0
Fork 0
dotfiles/system/nixos/ssh.nix

11 lines
158 B
Nix
Raw Normal View History

2022-07-30 19:49:04 +02:00
{
2022-07-31 21:23:28 +02:00
services.openssh = {
enable = true;
2023-01-22 13:50:29 +01:00
settings = {
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
};
2022-07-31 21:23:28 +02:00
};
2022-07-30 19:49:04 +02:00
}