summaryrefslogtreecommitdiffstats
path: root/common/ssh.nix
blob: 84f5577f87b4d522d0e3b2138a8f2371e184d71b (plain)
1
2
3
4
5
6
7
8
9
10
inputs:

{ config, pkgs, modulesPath, lib, ... }:

{
  services.openssh = {
    enable = true;
    settings.PasswordAuthentication = false;
  };
}