move some overlays into theire own package set

This commit is contained in:
jopejoe1 2024-01-13 16:40:15 +01:00
parent 7af0974976
commit 3ce6095f3c
6 changed files with 82 additions and 85 deletions

23
packages/default.nix Normal file
View file

@ -0,0 +1,23 @@
{ inputs, pkgs, system }:
{
tela-icon-theme-git = pkgs.tela-icon-theme.overrideAttrs {
src = inputs.tela-icon-theme;
};
openrgb-git = pkgs.openrgb.overrideAttrs {
src = inputs.openrgb;
};
libadwaita-follow-theme = pkgs.libadwaita.overrideAttrs (old: {
patches = (old.patches or [ ])++ [ ./adwaita-theming-support.patch ];
doCheck = false;
});
prismlauncher-withExtraStuff = inputs.prismlauncher.packages.${system}.prismlauncher.overrideAttrs (old: {
patches = (old.patches or [ ]) ++ [
inputs.prism-game-options-patch
./prism-ftb.patch
];
});
}