Move SSH configs into specific collections
This commit is contained in:
parent
00dfa03827
commit
5002cf9d48
|
@ -4,6 +4,19 @@
|
||||||
../common/desktop.nix
|
../common/desktop.nix
|
||||||
../../git/personal.nix
|
../../git/personal.nix
|
||||||
];
|
];
|
||||||
|
programs.ssh.matchBlocks = {
|
||||||
|
"legion xenia xenia.me.uk" = {
|
||||||
|
user = "xenia";
|
||||||
|
hostname = "xenia.me.uk";
|
||||||
|
port = 30;
|
||||||
|
forwardAgent = true;
|
||||||
|
};
|
||||||
|
"vanguard" = {
|
||||||
|
user = "xenia";
|
||||||
|
hostname = "192.168.1.166";
|
||||||
|
forwardAgent = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
discord
|
discord
|
||||||
element-desktop
|
element-desktop
|
||||||
|
|
|
@ -1,9 +1,34 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, lib, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../common/desktop.nix
|
../common/desktop.nix
|
||||||
../../git/work.nix
|
../../git/work.nix
|
||||||
];
|
];
|
||||||
|
programs.ssh.matchBlocks = {
|
||||||
|
"batch" = {
|
||||||
|
user = "cxsbatch";
|
||||||
|
hostname = "heimdall115.jetdata.eu";
|
||||||
|
};
|
||||||
|
"jupyter" = {
|
||||||
|
hostname = "freia022.hpc.l";
|
||||||
|
localForwards = [
|
||||||
|
{
|
||||||
|
bind.port = 6702;
|
||||||
|
host.address = "localhost";
|
||||||
|
host.port = 6702;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
"freia" = {
|
||||||
|
hostname = "freia022.hpc.l";
|
||||||
|
};
|
||||||
|
"freia???" = lib.hm.dag.entryAfter [ "freia" ] {
|
||||||
|
hostname = "%h.hpc.l";
|
||||||
|
};
|
||||||
|
"freia* jupyter" = lib.hm.dag.entryAfter [ "freia" "freia???" "jupyter" ] {
|
||||||
|
user = "elitherl";
|
||||||
|
};
|
||||||
|
};
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
libreoffice-fresh
|
libreoffice-fresh
|
||||||
neovide
|
neovide
|
||||||
|
|
37
home/env/ssh.nix
vendored
37
home/env/ssh.nix
vendored
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, lib, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -7,40 +7,7 @@
|
||||||
serverAliveCountMax = 3;
|
serverAliveCountMax = 3;
|
||||||
controlMaster = "auto";
|
controlMaster = "auto";
|
||||||
controlPersist = "1s";
|
controlPersist = "1s";
|
||||||
matchBlocks = {
|
matchBlocks."git.*".user = "git";
|
||||||
"legion xenia xenia.me.uk" = {
|
|
||||||
user = "xenia";
|
|
||||||
hostname = "xenia.me.uk";
|
|
||||||
port = 30;
|
|
||||||
forwardAgent = true;
|
|
||||||
};
|
|
||||||
"vanguard" = {
|
|
||||||
user = "xenia";
|
|
||||||
hostname = "192.168.1.166";
|
|
||||||
forwardAgent = true;
|
|
||||||
};
|
|
||||||
"git.ccfe.ac.uk".user = "git";
|
|
||||||
"batch" = {
|
|
||||||
user = "cxsbatch";
|
|
||||||
hostname = "heimdall115.jetdata.eu";
|
|
||||||
};
|
|
||||||
"freia" = {
|
|
||||||
hostname = "freia022.hpc.l";
|
|
||||||
remoteForwards = [
|
|
||||||
{
|
|
||||||
bind.port = 6702;
|
|
||||||
host.address = "localhost";
|
|
||||||
host.port = 6702;
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
"freia???" = lib.hm.dag.entryAfter ["freia"] {
|
|
||||||
hostname = "%h.hpc.l";
|
|
||||||
};
|
|
||||||
"freia*" = lib.hm.dag.entryAfter ["freia???"] {
|
|
||||||
user = "elitherl";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
home.packages = with pkgs; [ sshfs ];
|
home.packages = with pkgs; [ sshfs ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue