12 lines
274 B
Nix
12 lines
274 B
Nix
{programs.ssh = {
|
|
enable = true;
|
|
matchBlocks = {
|
|
"hi@dessa.dev" = {
|
|
host = "gitlab.com github.com 192.168.1.203";
|
|
identitiesOnly = true;
|
|
identityFile = [
|
|
"~/.ssh/id_user"
|
|
];
|
|
};
|
|
};
|
|
};}
|