mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-07 21:39:23 +02:00
Clean up
This commit is contained in:
parent
673524b947
commit
9ad1975f72
33 changed files with 358 additions and 471 deletions
|
@ -1,4 +1,4 @@
|
|||
{ prismlauncher, nur, self, pkgs, config, ... }:
|
||||
{ prismlauncher, nur, self, config, ... }:
|
||||
|
||||
{
|
||||
nixpkgs = {
|
||||
|
@ -10,12 +10,11 @@
|
|||
|
||||
(_self: super: rec {
|
||||
|
||||
tela-icon-theme = super.tela-icon-theme.overrideAttrs (_old: {
|
||||
src = self.inputs.tela-icon-theme;
|
||||
});
|
||||
tela-icon-theme = super.tela-icon-theme.overrideAttrs
|
||||
(_old: { src = self.inputs.tela-icon-theme; });
|
||||
|
||||
prismlauncher = super.prismlauncher.overrideAttrs (old: {
|
||||
patches = (old.patches or []) ++ [
|
||||
patches = (old.patches or [ ]) ++ [
|
||||
self.inputs.prism-game-options-patch
|
||||
../patches/prism-ftb.patch
|
||||
];
|
||||
|
@ -24,23 +23,22 @@
|
|||
#noto-fonts-color-emoji = pkgs.noto-fonts-color-emoji_withExtraFlags;
|
||||
|
||||
libadwaita = super.libadwaita.overrideAttrs (old: {
|
||||
patches = (old.patches or []) ++ [
|
||||
../patches/adwaita-theming-support.patch
|
||||
];
|
||||
patches = (old.patches or [ ])
|
||||
++ [ ../patches/adwaita-theming-support.patch ];
|
||||
doCheck = false;
|
||||
});
|
||||
|
||||
discord = (super.discord.overrideAttrs (old: {
|
||||
desktopItem = old.desktopItem.override (old: { exec = old.exec + " --disable-gpu-sandbox"; });
|
||||
desktopItem = old.desktopItem.override
|
||||
(old: { exec = old.exec + " --disable-gpu-sandbox"; });
|
||||
})).override {
|
||||
withOpenASAR = true;
|
||||
withVencord = true;
|
||||
withTTS = true;
|
||||
};
|
||||
|
||||
catppuccin-plymouth = super.catppuccin-plymouth.override {
|
||||
variant = "frappe";
|
||||
};
|
||||
catppuccin-plymouth =
|
||||
super.catppuccin-plymouth.override { variant = "frappe"; };
|
||||
})
|
||||
];
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue