1
0
Fork 0
forked from UniverseBow/flake
flake-ooni/homes/lorkan/modules/cli/ssh.nix
2026-03-26 16:28:53 +10:00

16 lines
336 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;
matchBlocks = {
# * block indicates defaults
"*" = {
forwardAgent = false;
addKeysToAgent = "yes";
};
};
};
}