From dcfbb7d66089f08b9145f3aba08d68a93069ceaa Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Fri, 19 Sep 2025 19:53:57 +0200 Subject: [PATCH] feat: add db-01 deploy-rs target Signed-off-by: Lander Van den Bulcke --- flake.nix | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 53aaa0f..36a9b8d 100644 --- a/flake.nix +++ b/flake.nix @@ -148,11 +148,20 @@ }; }; - deploy.nodes.hosting-02 = { - hostname = "hosting-02.escapeangle.com"; - profiles.system = { - user = "root"; - path = deploy-rs.lib.aarch64-linux.activate.nixos self.nixosConfigurations.hosting-02; + deploy.nodes = { + db-01 = { + hostname = "db-01.escapeangle.com"; + profiles.system = { + user = "root"; + path = deploy-rs.lib.aarch64-linux.activate.nixos self.nixosConfigurations.db-01; + }; + }; + hosting-02 = { + hostname = "hosting-02.escapeangle.com"; + profiles.system = { + user = "root"; + path = deploy-rs.lib.aarch64-linux.activate.nixos self.nixosConfigurations.hosting-02; + }; }; };