feat(flake): Added pi4
deploy node
This commit is contained in:
parent
47f0dbd2d4
commit
bae75ef0a4
1 changed files with 20 additions and 8 deletions
28
flake.nix
28
flake.nix
|
@ -128,14 +128,26 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
deploy.nodes.OVHCloud = {
|
deploy.nodes = {
|
||||||
hostname = "gasdev.fr";
|
OVHCloud = {
|
||||||
profiles.system = {
|
hostname = "gasdev.fr";
|
||||||
user = "root";
|
profiles.system = {
|
||||||
sshUser = "root";
|
user = "root";
|
||||||
sshOpts = ["-p" "22"];
|
sshUser = "root";
|
||||||
sudo = "";
|
sshOpts = ["-p" "22"];
|
||||||
path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.OVHCloud;
|
sudo = "";
|
||||||
|
path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.OVHCloud;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
pi4 = {
|
||||||
|
hostname = "10.8.0.31";
|
||||||
|
profiles.system = {
|
||||||
|
user = "root";
|
||||||
|
sshUser = "root";
|
||||||
|
sshOpts = ["-p" "22"];
|
||||||
|
sudo = "";
|
||||||
|
path = deploy-rs.lib.aarch64-linux.activate.nixos self.nixosConfigurations.pi4;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue