1
0
Fork 0
forked from UniverseBow/flake
flake-ooni/homes/lorkan/modules/cli/ssh.nix
2026-03-25 22:55:15 -07:00

10 lines
242 B
Nix

{...}: {
# set ssh profiles
# WARNING: this DOES NOT start the ssh-agent
# WARNING: for that you need to use `services.ssh-agent.enable`
programs.ssh = {
enable = true;
forwardAgent = false;
addKeysToAgent = "yes";
};
}