mediaserver: install atuin
This commit is contained in:
parent
7a89f7d48a
commit
51fa3a9503
4 changed files with 29 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
matchBlocks = {
|
matchBlocks = {
|
||||||
"builder-sail" = {
|
"builder-sail" = {
|
||||||
hostname = "sail-ts.kempkens.io";
|
hostname = "sail.ts.kempkens.network";
|
||||||
port = 22;
|
port = 22;
|
||||||
user = "root";
|
user = "root";
|
||||||
identityFile = "~/.ssh/Hetzner.pub";
|
identityFile = "~/.ssh/Hetzner.pub";
|
||||||
|
@ -9,11 +9,19 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
"builder-attic" = {
|
"builder-attic" = {
|
||||||
hostname = "attic-ts.kempkens.io";
|
hostname = "attic.ts.kempkens.network";
|
||||||
port = 22;
|
port = 22;
|
||||||
user = "root";
|
user = "root";
|
||||||
identityFile = "~/.ssh/Hetzner.pub";
|
identityFile = "~/.ssh/Hetzner.pub";
|
||||||
identitiesOnly = true;
|
identitiesOnly = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"builder-mediaserver" = {
|
||||||
|
hostname = "mediaserver.ts.kempkens.network";
|
||||||
|
port = 22;
|
||||||
|
user = "root";
|
||||||
|
identityFile = "~/.ssh/LAN.pub";
|
||||||
|
identitiesOnly = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
"sail" = {
|
"sail" = {
|
||||||
hostname = "sail-ts.kempkens.io";
|
hostname = "sail.ts.kempkens.network";
|
||||||
port = 22;
|
port = 22;
|
||||||
user = "daniel";
|
user = "daniel";
|
||||||
forwardAgent = true;
|
forwardAgent = true;
|
||||||
|
@ -59,12 +59,21 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
"attic" = {
|
"attic" = {
|
||||||
hostname = "attic-ts.kempkens.io";
|
hostname = "attic.ts.kempkens.network";
|
||||||
port = 22;
|
port = 22;
|
||||||
user = "daniel";
|
user = "daniel";
|
||||||
forwardAgent = true;
|
forwardAgent = true;
|
||||||
identityFile = "~/.ssh/Hetzner.pub";
|
identityFile = "~/.ssh/Hetzner.pub";
|
||||||
identitiesOnly = true;
|
identitiesOnly = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"mediaserver" = {
|
||||||
|
hostname = "mediaserver.ts.kempkens.network";
|
||||||
|
port = 22;
|
||||||
|
user = "daniel";
|
||||||
|
forwardAgent = true;
|
||||||
|
identityFile = "~/.ssh/LAN.pub";
|
||||||
|
identitiesOnly = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,6 +53,12 @@
|
||||||
systems = [ "x86_64-linux" "aarch64-linux" ];
|
systems = [ "x86_64-linux" "aarch64-linux" ];
|
||||||
maxJobs = 1;
|
maxJobs = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
hostName = "builder-mediaserver";
|
||||||
|
systems = [ "x86_64-linux" "aarch64-linux" ];
|
||||||
|
maxJobs = 1;
|
||||||
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
gc = {
|
gc = {
|
||||||
|
|
|
@ -11,6 +11,8 @@ in
|
||||||
|
|
||||||
../nixos/git.nix
|
../nixos/git.nix
|
||||||
|
|
||||||
|
../nixos/atuin-sync.nix
|
||||||
|
|
||||||
../nixos/attic.nix
|
../nixos/attic.nix
|
||||||
|
|
||||||
../nixos/tailscale.nix
|
../nixos/tailscale.nix
|
||||||
|
|
Loading…
Reference in a new issue