We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I deploy a single host only or alternatively make the deployment not fail when a host cannot be reached?
The text was updated successfully, but these errors were encountered:
I believe $(nix-build -A myHost) should work because of
$(nix-build -A myHost)
nixus/build.nix
Line 58 in 5257be6
Sorry, something went wrong.
Could you please also give an example of how to do it with flakes?
Taking #54 as the base, something like
apps = { default = flake-utils.lib.mkApp { drv = self.packages.${system}.deployer; exePath = ""; }; } // nixpkgs.lib.mapAttrs' (name: value: { name = "node-${name}"; value = flake-utils.lib.mkApp { drv = value.deployScript; exePath = ""; }; ) self.packages.${system}.deployer.config.nodes;
should work for nix run .#node-myHost :)
nix run .#node-myHost
No branches or pull requests
How do I deploy a single host only or alternatively make the deployment not fail when a host cannot be reached?
The text was updated successfully, but these errors were encountered: