mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 01:34:08 -05:00
15 lines
331 B
Nix
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
|
|
'';
|
|
};
|
|
}
|