nixfiles/deployNodes.nix
ChaotiCryptidz d14f1e2d44
storge
2022-10-27 16:25:26 +01:00

28 lines
769 B
Nix

{ 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;
};
};
storage = {
hostname = "storage.servers.genderfucked.monster";
username = "root";
profiles.system = {
user = "root";
path = activateNixOS_x64_64-linux nixosConfigurations.storage;
};
};
}