19 lines
282 B
Nix
19 lines
282 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs = {
|
|
ssh = {
|
|
enable = true;
|
|
addKeysToAgent = "1h";
|
|
hashKnownHosts = true;
|
|
matchBlocks = {
|
|
gitea = {
|
|
hostname = "code.beancloud.de";
|
|
user = "gitea";
|
|
port = 22;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|