nixos-config/overlays/default.nix

13 lines
642 B
Nix
Raw Permalink Normal View History

2023-09-25 10:14:56 +00:00
# A bunch of custom overlays. This is more suitable for larger and more
# established packages that needed extensive customization. Take note each of
# the values in the attribute set is a separate overlay function so you'll
# simply have to append them as a list (i.e., `lib.attrValues`).
{
2024-03-06 12:46:59 +00:00
default = final: prev: import ../pkgs { pkgs = prev; };
2023-09-25 10:14:56 +00:00
ffmpeg-foodogsquared = import ./ffmpeg-foodogsquared;
2023-10-17 05:25:07 +00:00
firefox-foodogsquared = import ./firefox-foodogsquared;
2023-09-25 10:28:24 +00:00
blender-foodogsquared = import ./blender-foodogsquared;
2025-01-12 06:21:02 +00:00
rotp-foodogsquared = import ./rotp-foodogsquared;
thunderbird-foodogsquared = import ./thunderbird-foodogsquared;
2023-09-25 10:14:56 +00:00
}