37 lines
862 B
Nix
37 lines
862 B
Nix
{...}: {
|
|
programs.ssh = {
|
|
enable = true;
|
|
matchBlocks = {
|
|
"viridian" = {
|
|
hostname = "viridian.home.arpa";
|
|
user = "sajenim";
|
|
identityFile = "/home/sajenim/.ssh/sajenim_sk";
|
|
};
|
|
|
|
"lavender" = {
|
|
hostname = "lavender.home.arpa";
|
|
user = "sajenim";
|
|
identityFile = "/home/sajenim/.ssh/sajenim_sk";
|
|
};
|
|
|
|
"sajenim-github" = {
|
|
hostname = "github.com";
|
|
user = "git";
|
|
identityFile = "/home/sajenim/.ssh/sajenim-github_sk";
|
|
};
|
|
|
|
"jasmine-forgejo" = {
|
|
hostname = "git.sajenim.dev";
|
|
user = "forgejo";
|
|
identityFile = "/home/sajenim/.ssh/jasmine-forgejo_sk";
|
|
};
|
|
|
|
"turing" = {
|
|
hostname = "turing.une.edu.au";
|
|
user = "jwils254";
|
|
identityFile = "/home/sajenim/.ssh/jwils254_sk";
|
|
};
|
|
};
|
|
};
|
|
}
|