1 2 3 4 5 6 7 8 9 10 11 12 13 14
{ self, lib, ... }: let machines = ["atlas" "p-body"]; deployedSystems = lib.genAttrs machines (m: self.nixosConfigurations.${m}); in { flake.deploy = { remoteBuild = true; nodes = self.lib.utils.mkDeployNodes deployedSystems; }; }