From c1f145e4c5cf2dc96789d7b12e1ab308ddbf0bf1 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 15 Jan 2026 13:29:36 +0100 Subject: [PATCH] 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. --- overlays/mods/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/overlays/mods/default.nix b/overlays/mods/default.nix index 55fc4ef..e0135c7 100644 --- a/overlays/mods/default.nix +++ b/overlays/mods/default.nix @@ -5,10 +5,10 @@ final: prev: { ./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' - ''; - }); + 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' + ''; + }); }