openssh.nix 146 B

123456789
  1. { lib, ... }:
  2. with lib;
  3. {
  4. services.openssh = {
  5. openFirewall = mkDefault true;
  6. settings.PasswordAuthentication = mkDefault false;
  7. };
  8. }