mirror of
https://github.com/ivabus/nixos
synced 2024-11-22 16:35:06 +03:00
9 lines
136 B
Nix
9 lines
136 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
services.openssh = {
|
||
|
enable = true;
|
||
|
settings.PasswordAuthentication = false;
|
||
|
};
|
||
|
programs.mosh.enable = true;
|
||
|
}
|