modules/autopatch: workaround for https://github.com/NixOS/nixpkgs/issues/171692
This commit is contained in:
parent
97ac1ea7d7
commit
830abeb7e1
1 changed files with 7 additions and 0 deletions
|
@ -32,6 +32,13 @@
|
||||||
gnome = super.gnome.overrideScope' (self': super': {
|
gnome = super.gnome.overrideScope' (self': super': {
|
||||||
inherit (patched) mutter nautilus;
|
inherit (patched) mutter nautilus;
|
||||||
gnome-control-center = patched.gnome-control-center.override { inherit (self') gnome-user-share; };
|
gnome-control-center = patched.gnome-control-center.override { inherit (self') gnome-user-share; };
|
||||||
|
gnome-shell = super'.gnome-shell.overrideAttrs (old: {
|
||||||
|
preFixup = old.preFixup + ''
|
||||||
|
gappsWrapperArgs+=(
|
||||||
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
tilix = patched.tilix-high-refresh-rate;
|
tilix = patched.tilix-high-refresh-rate;
|
||||||
|
|
Loading…
Reference in a new issue