summaryrefslogtreecommitdiffstats
path: root/common/ssh.nix
blob: 8bdabc2167e4f60067d61d0d6a61c4d0d85b5f98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
inputs:

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

{
  programs.gnupg.agent = {
    enable = true;
    enableSSHSupport = true;
  };

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