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

8 lines
129 B
Nix
Raw Normal View History

2022-07-30 17:49:04 +00:00
{
2022-07-31 19:23:28 +00:00
services.openssh = {
enable = true;
passwordAuthentication = false;
kbdInteractiveAuthentication = false;
};
2022-07-30 17:49:04 +00:00
}