SSH access for Gitea

This commit is contained in:
2026-05-15 15:23:26 +02:00
parent c12da16d00
commit ecafb32328
5 changed files with 28 additions and 17 deletions
+7
View File
@@ -17,6 +17,13 @@
if isDarwin then "/Users/${primaryUser}/.ssh/github" else "/home/${primaryUser}/.ssh/github";
user = "git";
};
"git.cyperpunk.de" = {
hostname = "git.cyperpunk.de";
port = 12222;
user = "gitea";
identityFile =
if isDarwin then "/Users/${primaryUser}/.ssh/ssh" else "/home/${primaryUser}/.ssh/ssh";
};
};
};
}