feat: 0.1.0
Some checks failed
distribution-gate / distribution-gate (push) Failing after 1m56s

This commit is contained in:
eric
2026-04-04 18:41:34 +02:00
parent 32147d4552
commit ebb6b488fe
48 changed files with 2541 additions and 139 deletions

View File

@@ -13,11 +13,11 @@
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
(flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
codex-controller-loop = import ./nix/packages/codex-controller-loop.nix { inherit pkgs; };
codex-controller-loop = pkgs.callPackage ./nix/packages/codex-controller-loop.nix { };
in
{
packages = {
@@ -43,6 +43,10 @@
pkgs.rust-analyzer
];
};
}
);
}))
// {
overlays.default = final: prev: {
codex-controller-loop = final.callPackage ./nix/packages/codex-controller-loop.nix { };
};
};
}