9 lines
118 B
Nix
9 lines
118 B
Nix
{ config, ... }:
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
AddKeysToAgent yes
|
|
'';
|
|
};
|
|
}
|