CrOS/modules/users/crow/configs/ssh.nix
TheWanderingCrow c3e1da1dac user ssh config
2025-03-07 20:50:14 -05:00

15 lines
331 B
Nix

{
programs.ssh = {
enable = true;
extraConfig = ''
Host github.com
User git
PreferredAuthentications publickey
IdentityFile /home/crow/.ssh/id_ed25519
Host Overseer
User overseer
HostName 192.168.0.30
IdentityFile /home/crow/.ssh/wanderingcrow
'';
};
}