11 lines
141 B
Nix
11 lines
141 B
Nix
{
|
|
services.openssh = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
AllowUsers = [ "opdavies" ];
|
|
PermitRootLogin = "no";
|
|
};
|
|
};
|
|
}
|