mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 08:56:34 +01:00
23 lines
563 B
Nix
23 lines
563 B
Nix
|
{ 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 [ ]) ++ [
|
||
|
./prism-ftb.patch
|
||
|
];
|
||
|
});
|
||
|
}
|