diff --git a/flake.nix b/flake.nix index 27d396d..4aa2a10 100644 --- a/flake.nix +++ b/flake.nix @@ -12,6 +12,7 @@ url = "github:fort-nix/nix-bitcoin/release"; }; nix-comfyui.url = "github:dyscorv/nix-comfyui"; + deploy-rs.url = "github:serokell/deploy-rs"; }; outputs = { nixpkgs, @@ -19,6 +20,7 @@ home-manager, nix-bitcoin, nix-comfyui, + deploy-rs, ... }: let system = "x86_64-linux"; @@ -69,5 +71,14 @@ ]; }; }; + + deploy.nodes.tfc = { + profiles = { + shen = { + path = + deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.shen; + }; + }; + }; }; }