From f76abc07ce29a480c9ca8a50919f601f30d93606 Mon Sep 17 00:00:00 2001 From: FabricSoul Date: Tue, 25 Feb 2025 17:49:50 -0500 Subject: [PATCH] add: ssh agent --- .gitignore | 1 + home/fabric/programs/ssh.nix | 13 +++++++++++++ home/fabric/programs/template.nix | 9 +++++++++ 3 files changed, 23 insertions(+) create mode 100644 home/fabric/programs/ssh.nix create mode 100644 home/fabric/programs/template.nix diff --git a/.gitignore b/.gitignore index 3edefbc..a931378 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ result/* +result diff --git a/home/fabric/programs/ssh.nix b/home/fabric/programs/ssh.nix new file mode 100644 index 0000000..4fc5644 --- /dev/null +++ b/home/fabric/programs/ssh.nix @@ -0,0 +1,13 @@ +# home/fabric/programs/ssh.nix +{ + config, + pkgs, + ... +}: { + programs = { + ssh = { + enable = true; + startAgent = true; + }; + }; +} diff --git a/home/fabric/programs/template.nix b/home/fabric/programs/template.nix new file mode 100644 index 0000000..0660f10 --- /dev/null +++ b/home/fabric/programs/template.nix @@ -0,0 +1,9 @@ +# home/fabric/programs/template.nix +{ + config, + pkgs, + ... +}: { + programs = { + }; +}