16 lines
348 B
Nix
16 lines
348 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
programs.ssh = {
|
|
# NOTE: if issues arise, check out this option; we may need to set some
|
|
# of the default options again, manually.
|
|
enableDefaultConfig = false;
|
|
enable = true;
|
|
settings."*" = {
|
|
AddKeysToAgent = "yes";
|
|
ForwardAgent = "yes";
|
|
};
|
|
};
|
|
|
|
services.ssh-agent.enable = true;
|
|
}
|