2024-10-28 13:12:06 +00:00
|
|
|
{
|
|
|
|
self,
|
|
|
|
deploy-rs,
|
|
|
|
...
|
|
|
|
}: let
|
2024-09-07 11:06:37 +00:00
|
|
|
deployArch = "x86_64-linux";
|
2024-03-02 12:58:17 +00:00
|
|
|
mkDeployNodes = nodeDef:
|
|
|
|
builtins.mapAttrs
|
2024-10-28 13:12:06 +00:00
|
|
|
(name: machine: nodeDef name machine)
|
|
|
|
self.machines.${deployArch};
|
|
|
|
in {
|
2024-03-02 12:58:17 +00:00
|
|
|
deploy = {
|
|
|
|
sshUser = "root";
|
|
|
|
user = "root";
|
|
|
|
|
2024-10-28 13:12:06 +00:00
|
|
|
nodes = mkDeployNodes (name: machine: let
|
|
|
|
nixosConfiguration = self.nixosConfigurations.${name};
|
|
|
|
in {
|
|
|
|
hostname = nixosConfiguration.config.networking.fqdn;
|
|
|
|
profiles.system = {
|
|
|
|
remoteBuild = machine.arch != deployArch;
|
|
|
|
path = deploy-rs.lib.${machine.arch}.activate.nixos nixosConfiguration;
|
|
|
|
};
|
|
|
|
});
|
2024-03-02 12:58:17 +00:00
|
|
|
};
|
|
|
|
}
|