mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:49:41 +00:00
13 lines
261 B
Nix
13 lines
261 B
Nix
{ ... }: {
|
|
# TODO: This really shouldn't be a default service in system/
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PermitRootLogin = "prohibit-password";
|
|
PasswordAuthentication = false;
|
|
X11Forwarding = false;
|
|
};
|
|
};
|
|
}
|
|
|