nixhome/ssh.nix

9 lines
123 B
Nix

{ config, pkgs, ... }:
{
programs.ssh = {
enable = true;
addKeysToAgent = "yes";
forwardAgent = true;
};
}