Add deploy entries for drone and proxy
This commit is contained in:
parent
0794e7a35c
commit
00a9e0f380
1 changed files with 22 additions and 1 deletions
23
flake.nix
23
flake.nix
|
@ -178,9 +178,19 @@
|
||||||
(builtins.attrNames machines));
|
(builtins.attrNames machines));
|
||||||
|
|
||||||
deploy.nodes = {
|
deploy.nodes = {
|
||||||
|
drone = {
|
||||||
|
hostname = "10.0.0.202";
|
||||||
|
|
||||||
|
profiles = {
|
||||||
|
system = {
|
||||||
|
sshUser = "root";
|
||||||
|
path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.drone;
|
||||||
|
user = "root";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
gitea = {
|
gitea = {
|
||||||
hostname = "10.0.0.201";
|
hostname = "10.0.0.201";
|
||||||
# fastConnection = true;
|
|
||||||
|
|
||||||
profiles = {
|
profiles = {
|
||||||
system = {
|
system = {
|
||||||
|
@ -190,6 +200,17 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
proxy = {
|
||||||
|
hostname = "10.0.0.251";
|
||||||
|
|
||||||
|
profiles = {
|
||||||
|
system = {
|
||||||
|
sshUser = "root";
|
||||||
|
path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.proxy;
|
||||||
|
user = "root";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
// (flake-utils.lib.eachSystem [ "aarch64-linux" "x86_64-linux" ])
|
// (flake-utils.lib.eachSystem [ "aarch64-linux" "x86_64-linux" ])
|
||||||
|
|
Loading…
Reference in a new issue