mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 15:46:34 +01:00
20 lines
564 B
Nix
20 lines
564 B
Nix
{ inputs, pkgs, system }:
|
|
|
|
{
|
|
tela-icon-theme-git = pkgs.tela-icon-theme.overrideAttrs {
|
|
src = inputs.tela-icon-theme;
|
|
};
|
|
|
|
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
|
|
];
|
|
});
|
|
|
|
nixos-anywhere = inputs.nixos-anywhere.packages.${system}.nixos-anywhere;
|
|
}
|