18 lines
294 B
Nix
18 lines
294 B
Nix
{ ... }:
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
|
|
# Automatically add keys to agent when used
|
|
# Other options are "no" and "confirm"
|
|
addKeysToAgent = "yes";
|
|
|
|
matchBlocks = {
|
|
"mcp.haven" = {
|
|
user = "drew";
|
|
};
|
|
};
|
|
};
|
|
services.ssh-agent.enable = true;
|
|
}
|