nixos-config/ssh.nix

10 lines
178 B
Nix
Raw Normal View History

2020-04-11 21:47:33 +00:00
{ config, pkgs, ... }:
{
services.openssh = {
enable = true;
passwordAuthentication = false;
};
# users.users.artemis.openssh.authorizedKeys.keys set in private
}