nixcfg/overlays/mods/default.nix
Harald Hoyer c1f145e4c5 fix(nix): correct indentation in at-spi2-core overrideAttrs
- Adjusted the indentation in `at-spi2-core`'s `overrideAttrs` block for consistency.
- Improves readability and maintains uniform code style across the file.
2026-01-15 13:29:36 +01:00

14 lines
491 B
Nix

{ ... }:
final: prev: {
gnome-console = prev.gnome-console.overrideAttrs (prevAttrs: {
patches = (prevAttrs.patches or [ ]) ++ [
./gnome-console-Add-image-and-file-path-pasting-support-for.patch
];
});
at-spi2-core = prev.at-spi2-core.overrideAttrs (oldAttrs: {
postInstall = (oldAttrs.postInstall or "") + ''
substituteInPlace $out/etc/xdg/Xwayland-session.d/00-at-spi \
--replace-fail 'exec xprop' 'exec ${final.xorg.xprop}/bin/xprop'
'';
});
}