add: ssh agent

This commit is contained in:
FabricSoul 2025-02-25 17:49:50 -05:00
parent 1acc74fdf6
commit f76abc07ce
3 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,13 @@
# home/fabric/programs/ssh.nix
{
config,
pkgs,
...
}: {
programs = {
ssh = {
enable = true;
startAgent = true;
};
};
}

View file

@ -0,0 +1,9 @@
# home/fabric/programs/template.nix
{
config,
pkgs,
...
}: {
programs = {
};
}