52 lines
1011 B
Nix
52 lines
1011 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.ssh = {
|
|
enable = true;
|
|
enableDefaultConfig = false;
|
|
matchBlocks = {
|
|
"*" = {
|
|
host = "*";
|
|
};
|
|
mallorea = {
|
|
host = "mallorea";
|
|
hostname = "server.thomasave.be";
|
|
port = 22;
|
|
user = "server";
|
|
forwardAgent = true;
|
|
};
|
|
Mallorea = {
|
|
host = "Mallorea";
|
|
hostname = "server.thomasave.be";
|
|
port = 22;
|
|
user = "server";
|
|
forwardAgent = true;
|
|
};
|
|
Vault = {
|
|
host = "Vault";
|
|
hostname = "etienne.thomasave.be";
|
|
port = 22;
|
|
user = "server";
|
|
forwardAgent = true;
|
|
};
|
|
vault = {
|
|
host = "vault";
|
|
hostname = "etienne.thomasave.be";
|
|
port = 22;
|
|
user = "server";
|
|
forwardAgent = true;
|
|
};
|
|
gcp = {
|
|
host = "gcp";
|
|
hostname = "34.126.140.76";
|
|
port = 22;
|
|
user = "user";
|
|
forwardAgent = true;
|
|
};
|
|
};
|
|
};
|
|
}
|