@ -8,6 +8,7 @@ in
./zsh.nix
./atuin.nix
./starship.nix
./ssh.nix
./packages.nix
];
@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
programs.ssh = {
enable = true;
addKeysToAgent = "yes";
forwardAgent = true;
};
}