2022-03-02 17:55:44 +00:00
|
|
|
{ nixosConfigurations, deploy-rs, ... }:
|
2022-07-27 16:47:49 +01:00
|
|
|
let activateNixOS_x64_64-linux = deploy-rs.lib.x86_64-linux.activate.nixos;
|
2022-03-02 17:55:44 +00:00
|
|
|
in {
|
|
|
|
lappy = {
|
|
|
|
hostname = "lappy.tailscale-internal.genderfucked.monster";
|
|
|
|
profiles.system = {
|
|
|
|
user = "root";
|
|
|
|
path = activateNixOS_x64_64-linux nixosConfigurations.lappy;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
hetzner-vm = {
|
2022-08-04 21:53:51 +01:00
|
|
|
hostname = "hetzner-vm.servers.genderfucked.monster";
|
2022-03-02 17:55:44 +00:00
|
|
|
username = "root";
|
|
|
|
profiles.system = {
|
|
|
|
user = "root";
|
2022-10-27 20:27:22 +01:00
|
|
|
sshUser = "root";
|
2022-03-02 17:55:44 +00:00
|
|
|
path = activateNixOS_x64_64-linux nixosConfigurations.hetzner-vm;
|
|
|
|
};
|
|
|
|
};
|
2022-10-27 16:25:26 +01:00
|
|
|
storage = {
|
|
|
|
hostname = "storage.servers.genderfucked.monster";
|
2022-03-02 17:55:44 +00:00
|
|
|
username = "root";
|
|
|
|
profiles.system = {
|
|
|
|
user = "root";
|
2022-10-27 20:27:22 +01:00
|
|
|
sshUser = "root";
|
2022-10-27 16:25:26 +01:00
|
|
|
path = activateNixOS_x64_64-linux nixosConfigurations.storage;
|
2022-03-02 17:55:44 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|