Flake-parts module that repos import to declare hosts, jobs, and secrets. Nushell CLI (rigging) aggregates multiple repos and provides unified management: host deploy/build, job run/plan/stop, secret list/rekey. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
263 B
Nix
12 lines
263 B
Nix
{
|
|
pkgs,
|
|
lib ? pkgs.lib,
|
|
...
|
|
}: let
|
|
writeNushellApplication = import ../lib/nushell.nix {inherit lib pkgs;};
|
|
in
|
|
writeNushellApplication {
|
|
name = "rigging";
|
|
runtimeInputs = with pkgs; [nix nomad jq];
|
|
text = builtins.readFile ./rigging.nu;
|
|
}
|