dev flow
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
{ lib, config, pkgs, ... }:
|
||||
{
|
||||
options.custom = {
|
||||
dev-orchestrator.enable = lib.mkEnableOption "enable dev-orchestrator — OpenSpec + OpenCode dev→QA loop with git worktrees";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.custom.dev-orchestrator.enable {
|
||||
home.packages = [
|
||||
(pkgs.writeShellApplication {
|
||||
name = "dev-orchestrator";
|
||||
runtimeInputs = with pkgs; [ git ];
|
||||
text = builtins.readFile ../../../tooling/dev-orchestrator;
|
||||
})
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user