nixfiles/profiles/sshd/sshd.nix

5 lines
139 B
Nix
Raw Normal View History

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