mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
Fixups
This commit is contained in:
parent
26196b3d59
commit
61b95262b8
3 changed files with 25 additions and 13 deletions
|
|
@ -138,17 +138,23 @@
|
|||
user = "root";
|
||||
path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos inputs.self.nixosConfigurations.${name};
|
||||
};
|
||||
hostname = "${name}.inskip.me";
|
||||
sshUser = "kat";
|
||||
autoRollback = true;
|
||||
magicRollback = true;
|
||||
};
|
||||
})
|
||||
(set.optional (name != "renko") {
|
||||
sshOpts = ["-p" "${builtins.toString (builtins.head inputs.self.nixosConfigurations.${name}.config.services.openssh.ports)}"];
|
||||
${name} = {
|
||||
hostname = "${name}.inskip.me";
|
||||
sshUser = "kat";
|
||||
sshOpts = ["-p" "${builtins.toString (builtins.head inputs.self.nixosConfigurations.${name}.config.services.openssh.ports)}"];
|
||||
};
|
||||
})
|
||||
(set.optional (name == "renko") {
|
||||
sshOpts = ["-p" "32222"];
|
||||
${name} = {
|
||||
sshUser = "nixos";
|
||||
hostname = "orb";
|
||||
sshOpts = ["-p" "32222"];
|
||||
};
|
||||
})
|
||||
];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue