2024-01-13 16:40:15 +01:00
|
|
|
{ inputs, pkgs, system }:
|
|
|
|
|
|
|
|
{
|
|
|
|
tela-icon-theme-git = pkgs.tela-icon-theme.overrideAttrs {
|
|
|
|
src = inputs.tela-icon-theme;
|
|
|
|
};
|
|
|
|
|
|
|
|
libadwaita-follow-theme = pkgs.libadwaita.overrideAttrs (old: {
|
2024-01-19 13:42:27 +01:00
|
|
|
patches = (old.patches or [ ]) ++ [ ./adwaita-theming-support.patch ];
|
2024-01-13 16:40:15 +01:00
|
|
|
doCheck = false;
|
|
|
|
});
|
|
|
|
|
|
|
|
prismlauncher-withExtraStuff = inputs.prismlauncher.packages.${system}.prismlauncher.overrideAttrs (old: {
|
|
|
|
patches = (old.patches or [ ]) ++ [
|
|
|
|
./prism-ftb.patch
|
|
|
|
];
|
|
|
|
});
|
2024-04-18 16:27:24 +02:00
|
|
|
|
|
|
|
nixos-anywhere = inputs.nixos-anywhere.packages.${system}.nixos-anywhere;
|
2024-01-13 16:40:15 +01:00
|
|
|
}
|