mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-12 18:24:09 -05:00
9 lines
143 B
Nix
9 lines
143 B
Nix
{
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PermitRootLogin = "no";
|
|
PasswordAuthentication = false;
|
|
};
|
|
};
|
|
}
|