snowflake/hosts/deploy.nix
2023-05-12 05:26:48 -04:00

34 lines
836 B
Nix

inputs: {
nodes = with inputs.deploy-rs.lib.x86_64-linux; {
hime = {
hostname = "hime";
profiles.system = {
user = "root";
path = activate.nixos inputs.self.nixosConfigurations.hime;
};
sshUser = "oh";
sshOpts = ["-t"];
magicRollback = false;
};
sutakku = {
hostname = "sutakku";
profiles.system = {
user = "root";
path = activate.nixos inputs.self.nixosConfigurations.sutakku;
};
sshUser = "oh";
sshOpts = ["-t"];
magicRollback = false;
};
sakura = {
hostname = "192.168.1.25";
profiles.system = {
user = "root";
path = activate.nixos inputs.self.nixosConfigurations.sakura;
};
sshUser = "notoh";
sshOpts = ["-t"];
magicRollback = false;
};
};
}