rice/users/buffet/ssh.nix

14 lines
248 B
Nix
Raw Normal View History

2024-07-15 15:55:20 +00:00
{
home-manager.users.buffet = {
programs.ssh = {
enable = true;
extraConfig = ''
Host kitchen
Hostname buffets.kitchen
User forgejo
IdentityFile ~/.ssh/id_buffet_ecdsa
'';
};
};
}