mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-30 22:57:55 +00:00
13 lines
642 B
Nix
13 lines
642 B
Nix
# 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`).
|
|
{
|
|
default = final: prev: import ../pkgs { pkgs = prev; };
|
|
ffmpeg-foodogsquared = import ./ffmpeg-foodogsquared;
|
|
firefox-foodogsquared = import ./firefox-foodogsquared;
|
|
blender-foodogsquared = import ./blender-foodogsquared;
|
|
rotp-foodogsquared = import ./rotp-foodogsquared;
|
|
thunderbird-foodogsquared = import ./thunderbird-foodogsquared;
|
|
}
|