users/jordan: add ssh config

This commit is contained in:
Jordan Holt 2025-04-26 18:29:02 +01:00
parent f869e1e7bd
commit 253eb57af2
Signed by: jordan
GPG Key ID: B8CFFF61F1CCF520
2 changed files with 13 additions and 0 deletions

View File

@ -37,6 +37,7 @@ in
./neovim.nix ./neovim.nix
./pass.nix ./pass.nix
./shell.nix ./shell.nix
./ssh.nix
]; ];
home = { home = {

12
users/jordan/ssh.nix Normal file
View File

@ -0,0 +1,12 @@
{
...
}:
{
services.ssh-agent.enable = true;
programs.ssh = {
enable = true;
addKeysToAgent = "yes";
};
}