rigging/cli/rigging.nix
Christopher Mühl 892161eae2
feat: initial rigging — multi-repo NixOS + Nomad infrastructure management
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>
2026-02-18 01:09:32 +01:00

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;
}