From b46b38bf7f988f40a34e6c45f0a9640536e741f5 Mon Sep 17 00:00:00 2001 From: Leonora Tindall Date: Mon, 5 Feb 2024 10:55:53 -0600 Subject: [PATCH] Add ssh config --- home.nix | 1 + ssh.nix | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 ssh.nix diff --git a/home.nix b/home.nix index 9a549c8..6845fb9 100644 --- a/home.nix +++ b/home.nix @@ -8,6 +8,7 @@ in ./zsh.nix ./atuin.nix ./starship.nix + ./ssh.nix ./packages.nix ]; diff --git a/ssh.nix b/ssh.nix new file mode 100644 index 0000000..d7ebf25 --- /dev/null +++ b/ssh.nix @@ -0,0 +1,8 @@ +{ config, pkgs, ... }: +{ + programs.ssh = { + enable = true; + addKeysToAgent = "yes"; + forwardAgent = true; + }; +}