refactor: made pkgs dendrites

This commit is contained in:
Leyla Becker 2026-04-07 08:45:11 -05:00
parent 88041e86bd
commit df8dd110ad
54 changed files with 1184 additions and 1058 deletions

View file

@ -0,0 +1,11 @@
{config, ...}: {
flake.commonModules.codium-extensions = {pkgs, ...}: {
nixpkgs.overlays = [
(final: prev: {
codium-extensions = {
ai-code = pkgs.callPackage config.flake.commonModules.codium-ai-code {};
};
})
];
};
}