14 lines
485 B
Nix
14 lines
485 B
Nix
{ self, pkgs, machines, flake-utils, deploy-rs, ... }: flake-utils.lib.eachDefaultSystem (system: {
|
|
# Deploy-rs' flake checks seem broken for architectures different from the deployment machine.
|
|
# We skip these here.
|
|
|
|
checks = deploy-rs.lib.${system}.deployChecks (
|
|
pkgs.lib.attrsets.updateManyAttrsByPath [{
|
|
path = [ "nodes" ];
|
|
update = pkgs.lib.attrsets.filterAttrs (name: node:
|
|
machines.${name}.arch == system
|
|
);
|
|
}]
|
|
self.deploy
|
|
);
|
|
})
|