This commit is contained in:
Hadi
2024-03-11 23:19:59 +01:00
parent fc06455cbf
commit 720c6a3dbb
9 changed files with 164 additions and 66 deletions

14
home/misc/sshconfig.nix Normal file
View File

@@ -0,0 +1,14 @@
{
home.file = {
".ssh/config" = {
text = ''
Host github.com
User git
Hostname github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/github
'';
executable = false;
};
};
}