14 lines
221 B
Nix
14 lines
221 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.ssh = {
|
||
|
enable = true;
|
||
|
matchBlocks = {
|
||
|
"git.bitlab21.com" = {
|
||
|
identitiesOnly = true;
|
||
|
identityFile = "~/.ssh/deploy_key-ssh-ed25519";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|