nixos/home/misc/default.nix
2024-03-11 19:36:05 +01:00

15 lines
261 B
Nix

{
home.file = {
".ssh/config" = {
text = ''
Host github.com
User git
Hostname github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/github
'';
executable = false;
};
};
}