Add barebone server "alto"

This commit is contained in:
SebastianStork 2025-03-27 23:43:54 +01:00
parent 1addecdfb2
commit 7aed295543
7 changed files with 155 additions and 5 deletions

View file

@ -24,16 +24,25 @@ in
{
flake = {
nixosConfigurations = lib.mkMerge [
(mkHost "alto")
(mkHost "fern")
(mkHost "north")
(mkHost "stratus")
];
deploy.nodes.stratus = {
hostname = "stratus";
sshUser = "root";
remoteBuild = true;
profiles.system.path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.stratus;
deploy.nodes = {
stratus = {
hostname = "stratus";
sshUser = "root";
remoteBuild = true;
profiles.system.path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.stratus;
};
alto = {
hostname = "alto";
sshUser = "root";
remoteBuild = true;
profiles.system.path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.alto;
};
};
};
}