nixos/modules/home/dev/ssh.nix
2024-08-19 21:08:09 -04:00

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"
];
};
};
};}