15 lines
261 B
Nix
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;
|
|
};
|
|
};
|
|
}
|