9 lines
162 B
Nix
9 lines
162 B
Nix
{pkgs, ...}: {
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PasswordAuthentication = false;
|
|
AllowUsers = ["christopher"];
|
|
};
|
|
};
|
|
}
|