snowflake/hosts/deploy.nix
2023-06-03 22:53:57 -04:00

35 lines
889 B
Nix

inputs: {
nodes = with inputs.deploy-rs.lib.x86_64-linux; {
sakura = {
hostname = "sakura";
profiles.system = {
user = "root";
path = activate.nixos inputs.self.nixosConfigurations.sakura;
};
sshUser = "notoh";
sshOpts = ["-t" "-i" "~/.ssh/sakura"];
magicRollback = false;
};
kariru = {
hostname = "kariru";
profiles.system = {
user = "root";
path = activate.nixos inputs.self.nixosConfigurations.kariru;
};
sshUser = "notoh";
sshOpts = ["-t" "-i" "~/.ssh/kariru"];
magicRollback = false;
};
yuki = {
hostname = "yuki";
profiles.system = {
user = "root";
path = activate.nixos inputs.self.nixosConfigurations.yuki;
};
sshUser = "notoh";
sshOpts = ["-t" "-i" "~/.ssh/yuki"];
magicRollback = false;
};
};
}