local build on io deploy
This commit is contained in:
parent
d931282a35
commit
5006f6fc95
1 changed files with 28 additions and 26 deletions
54
deploy.nix
54
deploy.nix
|
|
@ -4,40 +4,42 @@
|
||||||
remoteBuild = true;
|
remoteBuild = true;
|
||||||
nodes = {
|
nodes = {
|
||||||
alexandria = {
|
alexandria = {
|
||||||
hostname = "alexandria";
|
hostname = "alexandria";
|
||||||
profiles.system = {
|
profiles.system = {
|
||||||
sshUser = "user";
|
|
||||||
path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.alexandria;
|
|
||||||
user = "root";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
trantor = {
|
|
||||||
hostname = "trantor";
|
|
||||||
profiles.system = {
|
|
||||||
sshUser = "user";
|
|
||||||
path = inputs.deploy-rs.lib.aarch64-linux.activate.nixos self.nixosConfigurations.trantor;
|
|
||||||
user = "root";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
io = {
|
|
||||||
hostname = "io";
|
|
||||||
profiles = {
|
|
||||||
system = {
|
|
||||||
sshUser = "user";
|
sshUser = "user";
|
||||||
path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.io;
|
path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.alexandria;
|
||||||
user = "root";
|
user = "root";
|
||||||
};
|
};
|
||||||
user = {
|
};
|
||||||
|
|
||||||
|
trantor = {
|
||||||
|
hostname = "trantor";
|
||||||
|
profiles.system = {
|
||||||
sshUser = "user";
|
sshUser = "user";
|
||||||
path = inputs.deploy-rs.lib.x86_64-linux.activate.home-manager self.homeConfigurations."user@io";
|
path = inputs.deploy-rs.lib.aarch64-linux.activate.nixos self.nixosConfigurations.trantor;
|
||||||
user = "user";
|
user = "root";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
io = {
|
||||||
|
hostname = "io";
|
||||||
|
profiles = {
|
||||||
|
system = {
|
||||||
|
sshUser = "user";
|
||||||
|
path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.io;
|
||||||
|
user = "root";
|
||||||
|
remoteBuild = false;
|
||||||
|
};
|
||||||
|
user = {
|
||||||
|
sshUser = "user";
|
||||||
|
path = inputs.deploy-rs.lib.x86_64-linux.activate.home-manager self.homeConfigurations."user@io";
|
||||||
|
user = "user";
|
||||||
|
remoteBuild = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
perSystem =
|
perSystem =
|
||||||
{ system, ... }:
|
{ system, ... }:
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue