mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 21:01:34 +01:00
Add barebone server "alto"
This commit is contained in:
parent
1addecdfb2
commit
7aed295543
7 changed files with 155 additions and 5 deletions
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue