nix/programs/ssh.nix

26 lines
456 B
Nix
Raw Normal View History

2024-06-15 21:59:32 +02:00
{...}:
{
enable = true;
matchBlocks = {
"github.com" = {
user = "git";
identityFile = "~/.ssh/github";
};
"192.168.1.12" = {
identityFile = "~/.ssh/raspi";
};
2024-06-15 22:02:35 +02:00
"git.jacekpoz.pl" = {
2024-06-15 22:03:45 +02:00
user = "forgejo";
2024-06-15 22:02:35 +02:00
identityFile = "~/.ssh/jacekgit";
};
2024-06-21 17:54:41 +02:00
"zasadzka.pl" = {
user = "discord";
identityFile = "~/.ssh/zasadzka";
setEnv = {
"TERM" = "xterm-256color";
};
};
2024-06-15 21:59:32 +02:00
};
}