forked from UniverseBow/flake
10 lines
242 B
Nix
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";
|
|
};
|
|
}
|