mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 10:36:34 +01:00
Patch adwaita
This commit is contained in:
parent
70d33551e7
commit
414fc93402
1 changed files with 10 additions and 1 deletions
11
flake.nix
11
flake.nix
|
@ -18,7 +18,7 @@
|
|||
flake = false;
|
||||
};
|
||||
|
||||
# PrismLauncher Patches
|
||||
# Patches
|
||||
prism-game-options-patch = {
|
||||
url = "https://patch-diff.githubusercontent.com/raw/PrismLauncher/PrismLauncher/pull/907.patch";
|
||||
flake = false;
|
||||
|
@ -27,6 +27,10 @@
|
|||
url = "https://github.com/AdenMck/PrismLauncher/commit/36df231f7ad5f8d54d08c4d2c5f99f6d000fc507.patch";
|
||||
flake = false;
|
||||
};
|
||||
adwaita-theming-support = {
|
||||
url = "https://aur.archlinux.org/cgit/aur.git/plain/theming_patch.diff?h=libadwaita-without-adwaita-git";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
|
||||
outputs = inputs@{
|
||||
|
@ -77,6 +81,11 @@
|
|||
inputs.prism-ftb-patch
|
||||
];
|
||||
});
|
||||
libadwaita = super.libadwaita.overrideAttrs (old: {
|
||||
patches = (old.patches or []) ++ [
|
||||
inputs.adwaita-theming-support
|
||||
];
|
||||
});
|
||||
discord = super.discord.overrideAttrs (old: {
|
||||
desktopItem = old.desktopItem.override (old: { exec = old.exec + " --disable-gpu-sandbox"; });
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue