10 lines
201 B
Nix
10 lines
201 B
Nix
{...}: {
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PasswordAuthentication = false;
|
|
# TODO: Determine which user to allow!
|
|
AllowUsers = ["toph" "root"];
|
|
};
|
|
};
|
|
}
|