mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
11 lines
240 B
Nix
11 lines
240 B
Nix
{...}: {
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
UseDns = true;
|
|
PermitRootLogin = "no";
|
|
# PasswordAuthentication = true;
|
|
# This is default to true, make sure override it when needed.
|
|
};
|
|
};
|
|
}
|