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,21 @@
# Package modules providing custom packages via nixpkgs overlays
{config, ...}: let
pkg = config.flake.commonModules;
in {
flake.commonModules.pkgs = {
imports = [
pkg.webtoon-dl
pkg.prostudiomasters
pkg.gdx-liftoff
pkg.e621-downloader
pkg.h3-c-lib
pkg.mapillary-uploader
pkg.panoramax
pkg.sgblur
pkg.cline
pkg.codium-extensions
pkg.firefox-extensions
pkg.python
];
};
}