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; + }; +}