deploy: switch sshUser to root, and enable magicRollback on all systems

This commit is contained in:
notohh 2023-10-20 18:32:24 -04:00
parent da2caff517
commit 96ac8d076e
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -6,9 +6,9 @@ inputs: {
user = "root"; user = "root";
path = activate.nixos inputs.self.nixosConfigurations.sakura; path = activate.nixos inputs.self.nixosConfigurations.sakura;
}; };
sshUser = "notoh"; sshUser = "root";
sshOpts = ["-t" "-i" "~/.ssh/sakura"]; sshOpts = ["-t" "-i" "~/.ssh/sakura"];
magicRollback = false; magicRollback = true;
}; };
kariru = { kariru = {
hostname = "kariru"; hostname = "kariru";
@ -16,9 +16,9 @@ inputs: {
user = "root"; user = "root";
path = activate.nixos inputs.self.nixosConfigurations.kariru; path = activate.nixos inputs.self.nixosConfigurations.kariru;
}; };
sshUser = "notoh"; sshUser = "root";
sshOpts = ["-t" "-i" "~/.ssh/kariru"]; sshOpts = ["-t" "-i" "~/.ssh/kariru"];
magicRollback = false; magicRollback = true;
}; };
yuki = { yuki = {
hostname = "yuki"; hostname = "yuki";
@ -26,9 +26,9 @@ inputs: {
user = "root"; user = "root";
path = activate.nixos inputs.self.nixosConfigurations.yuki; path = activate.nixos inputs.self.nixosConfigurations.yuki;
}; };
sshUser = "notoh"; sshUser = "root";
sshOpts = ["-t" "-i" "~/.ssh/yuki"]; sshOpts = ["-t" "-i" "~/.ssh/yuki"];
magicRollback = false; magicRollback = true;
}; };
arashi = { arashi = {
hostname = "arashi"; hostname = "arashi";
@ -36,9 +36,9 @@ inputs: {
user = "root"; user = "root";
path = activate.nixos inputs.self.nixosConfigurations.arashi; path = activate.nixos inputs.self.nixosConfigurations.arashi;
}; };
sshUser = "notoh"; sshUser = "root";
sshOpts = ["-t" "-i" "~/.ssh/arashi"]; sshOpts = ["-t" "-i" "~/.ssh/arashi"];
magicRollback = false; magicRollback = true;
}; };
sora = { sora = {
hostname = "sora"; hostname = "sora";
@ -46,9 +46,19 @@ inputs: {
user = "root"; user = "root";
path = activate.nixos inputs.self.nixosConfigurations.sora; path = activate.nixos inputs.self.nixosConfigurations.sora;
}; };
sshUser = "notoh"; sshUser = "root";
sshOpts = ["-t" "-i" "~/.ssh/kumo"]; sshOpts = ["-t" "-i" "~/.ssh/kumo"];
magicRollback = false; magicRollback = true;
};
tsuru = {
hostname = "tsuru";
profiles.system = {
user = "root";
path = activate.nixos inputs.self.nixosConfigurations.tsuru;
};
sshUser = "root";
sshOpts = ["-t" "-i" "~/.ssh/tsuru"];
magicRollback = true;
}; };
}; };
} }