snowflake/hosts/deploy.nix

35 lines
836 B
Nix
Raw Normal View History

2023-04-26 17:34:08 -04:00
inputs: {
nodes = with inputs.deploy-rs.lib.x86_64-linux; {
hime = {
hostname = "hime";
profiles.system = {
user = "root";
path = activate.nixos inputs.self.nixosConfigurations.hime;
};
2023-04-26 19:42:28 -04:00
sshUser = "oh";
2023-04-26 22:05:41 -04:00
sshOpts = ["-t"];
magicRollback = false;
2023-04-26 19:42:28 -04:00
};
sutakku = {
hostname = "sutakku";
profiles.system = {
user = "root";
path = activate.nixos inputs.self.nixosConfigurations.sutakku;
};
sshUser = "oh";
2023-04-26 22:05:41 -04:00
sshOpts = ["-t"];
magicRollback = false;
2023-04-26 17:34:08 -04:00
};
2023-05-12 05:26:48 -04:00
sakura = {
hostname = "192.168.1.25";
profiles.system = {
user = "root";
path = activate.nixos inputs.self.nixosConfigurations.sakura;
};
sshUser = "notoh";
sshOpts = ["-t"];
magicRollback = false;
};
2023-04-26 17:34:08 -04:00
};
2023-04-26 19:23:23 -04:00
}