moved deviations living under horizon to common shared folder

This commit is contained in:
Leyla Becker 2025-05-28 16:03:05 -05:00
parent 210a4084f7
commit 7923f493eb
5 changed files with 21 additions and 8 deletions

View file

@ -0,0 +1,17 @@
{pkgs, ...}: {
nixpkgs.overlays = [
(final: prev: {
webtoon-dl =
pkgs.callPackage
./webtoon-dl.nix
{};
})
# TODO: this package always needs to be called with the --in-process-gpu flag for some reason, can we automate that?
(final: prev: {
prostudiomasters =
pkgs.callPackage
./prostudiomasters.nix
{};
})
];
}