{ nixosConfigurations, deploy-rs, ... }: let activateNixOS_x64_64-linux = deploy-rs.lib.x86_64-linux.activate.nixos; in { lappy = { hostname = "lappy.tailscale-internal.genderfucked.monster"; profiles.system = { user = "root"; path = activateNixOS_x64_64-linux nixosConfigurations.lappy; }; }; hetzner-vm = { hostname = "hetzner-vm.servers.genderfucked.monster"; username = "root"; profiles.system = { user = "root"; path = activateNixOS_x64_64-linux nixosConfigurations.hetzner-vm; }; }; raspberry = { hostname = "raspberry.tailscale-internal.genderfucked.monster"; username = "root"; profiles.system = { user = "root"; path = deploy-rs.lib.aarch64-linux.activate.nixos nixosConfigurations.raspberry; }; }; }