mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 15:36:35 +01:00
22 lines
563 B
Nix
22 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
|
|
];
|
|
});
|
|
}
|