snowflake/hosts/deploy.nix

25 lines
621 B
Nix
Raw Normal View History

2023-04-26 17:34:08 -04:00
inputs: {
nodes = with inputs.deploy-rs.lib.x86_64-linux; {
2023-05-12 05:26:48 -04:00
sakura = {
2023-05-14 01:53:53 -04:00
hostname = "sakura";
2023-05-12 05:26:48 -04:00
profiles.system = {
user = "root";
path = activate.nixos inputs.self.nixosConfigurations.sakura;
2023-05-14 01:53:53 -04:00
};
2023-05-12 05:26:48 -04:00
sshUser = "notoh";
2023-05-14 11:04:46 -04:00
sshOpts = ["-t" "-i" "~/.ssh/sakura"];
2023-05-12 05:26:48 -04:00
magicRollback = false;
};
2023-05-17 10:13:01 -04:00
kariru = {
hostname = "kariru";
profiles.system = {
user = "root";
path = activate.nixos inputs.self.nixosConfigurations.kariru;
};
sshUser = "notoh";
sshOpts = ["-t" "-i" "~/.ssh/kariru"];
magicRollback = false;
};
2023-04-26 17:34:08 -04:00
};
2023-04-26 19:23:23 -04:00
}