about summary refs log tree commit diff
path: root/hosts/common/system/ssh.nix
blob: cb7c47d6877100da600bd9e6e171c2e2ccc84c8b (plain) (blame)
1
2
3
4
5
6
{
  # Enable the OpenSSH daemon.
  services.openssh.enable = true;
  services.openssh.permitRootLogin = "yes";
  services.openssh.passwordAuthentication = false;
}