niksos/hosts/work/ssh.nix

19 lines
470 B
Nix
Raw Normal View History

2024-09-02 11:26:34 +02:00
{
inputs,
...
}: {
2024-08-28 22:21:15 +02:00
poz.services.ssh = {
daemon.enable = false;
agent = {
enable = true;
hostAliases = {
jacekpoz = {
hostName = "git.jacekpoz.pl";
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMmtUtuo1d1QT4w4SeefWQq7DYxPWqixf4wBE8usAYlY";
user = "forgejo";
};
2024-09-02 11:26:34 +02:00
} // inputs.work-secrets.ssh;
2024-08-28 22:21:15 +02:00
};
};
}