feat(darwin): new host - frieren

This commit is contained in:
Ryan Yin
2025-05-13 12:50:26 +08:00
parent 65e1ea4fc5
commit e13079f7a8
9 changed files with 87 additions and 15 deletions
+14
View File
@@ -0,0 +1,14 @@
{
programs.ssh = {
enable = true;
extraConfig = ''
Host github.com
Hostname github.com
# github is controlled by frieren~
IdentityFile ~/.ssh/frieren
# Specifies that ssh should only use the identity file explicitly configured above
# required to prevent sending default identity files first.
IdentitiesOnly yes
'';
};
}