summaryrefslogtreecommitdiff
path: root/parts/deploy.nix
blob: cce2b004f1ccb8357e467591103f9d7bca58c2ba (plain)
1
2
3
4
5
6
7
8
9
{self, ...}: let
  targets = ["atlas" "p-body"];
in {
  flake.deploy = {
    remoteBuild = true;
    fastConnection = true;
    nodes = self.lib.utils.mkDeployNodes targets;
  };
}