11 lines
223 B
Nix
11 lines
223 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.openssh = {
|
|
enable = true;
|
|
passwordAuthentication = false;
|
|
challengeResponseAuthentication = false;
|
|
};
|
|
# users.users.artemis.openssh.authorizedKeys.keys set in private
|
|
}
|