added stuff
This commit is contained in:
parent
937f28770d
commit
236b8c2a6b
907 changed files with 70990 additions and 0 deletions
68
nyx/homes/notashelf/programs/terminal/tools/ssh.nix
Normal file
68
nyx/homes/notashelf/programs/terminal/tools/ssh.nix
Normal file
|
@ -0,0 +1,68 @@
|
|||
{
|
||||
programs = {
|
||||
ssh = {
|
||||
enable = true;
|
||||
hashKnownHosts = true;
|
||||
compression = true;
|
||||
matchBlocks = let
|
||||
commonIdFile = "~/.ssh/id_ed25519";
|
||||
in {
|
||||
"aur" = {
|
||||
hostname = "aur.archlinux.org";
|
||||
identityFile = "~/.ssh/aur";
|
||||
};
|
||||
|
||||
"builder" = {
|
||||
hostname = "build.neushore.dev";
|
||||
user = "builder";
|
||||
identityFile = "~/.ssh/builder";
|
||||
port = 30;
|
||||
};
|
||||
|
||||
"helios" = {
|
||||
port = 30;
|
||||
};
|
||||
|
||||
"enyo" = {
|
||||
port = 30;
|
||||
};
|
||||
|
||||
"hermes" = {
|
||||
port = 30;
|
||||
};
|
||||
|
||||
"epimetheus" = {
|
||||
port = 30;
|
||||
};
|
||||
|
||||
"icarus" = {
|
||||
port = 30;
|
||||
};
|
||||
|
||||
"nix-builder" = {
|
||||
hostname = "helios";
|
||||
user = "nix-builder";
|
||||
identityFile = "~/.ssh/builder";
|
||||
};
|
||||
|
||||
"frozendev" = {
|
||||
hostname = "frzn.dev";
|
||||
user = "raf";
|
||||
identityFile = "~/.ssh/id_rsa";
|
||||
};
|
||||
|
||||
"github" = {
|
||||
hostname = "github.com";
|
||||
identityFile = "~/.ssh/github_rsa";
|
||||
};
|
||||
|
||||
"neushore" = {
|
||||
hostname = "ssh.neushore.dev";
|
||||
user = "raf";
|
||||
identityFile = "~/.ssh/neushore";
|
||||
port = 30;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue