summaryrefslogtreecommitdiff
path: root/modules/common/ssh/default.nix
blob: a4c589167e97e69fe91133e23c082cfac4dd3066 (plain)
1
2
3
4
5
6
7
8
9
{
  services.openssh = {
    enable = true;
    settings = {
      PermitRootLogin = "yes";
      PasswordAuthentication = true;
    };
  };
}