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; + }; }; };