nixfiles/profiles/sshd/sshd.nix

6 lines
136 B
Nix
Raw Normal View History

2021-12-28 22:06:26 +00:00
{ ... }: {
services.openssh.enable = true;
services.openssh.permitRootLogin = "prohibit-password";
programs.mosh.enable = true;
}