nixfiles/deployNodes.nix

40 lines
1 KiB
Nix
Raw Normal View History

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 {
tablet = {
hostname = "tablet.internal.genderfucked.monster";
2022-03-02 17:55:44 +00:00
profiles.system = {
user = "root";
sshUser = "root";
path = activateNixOS_x64_64-linux nixosConfigurations.tablet;
2022-03-02 17:55:44 +00:00
};
};
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
};
};
2022-11-02 10:24:47 +00:00
vault = {
hostname = "vault.servers.genderfucked.monster";
username = "root";
profiles.system = {
user = "root";
sshUser = "root";
path = activateNixOS_x64_64-linux nixosConfigurations.vault;
};
};
2022-03-02 17:55:44 +00:00
}