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

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

{
  services.openssh = {
    enable = true;
    passwordAuthentication = false;
  };
}