Compare commits

..

2 commits

Author SHA1 Message Date
88bf3cbcb8 fix(x1): remove unused Docker and Podman configs
- Disabled `docker.enable` and `podman.dockerCompat` as they are no longer utilized.
- Simplifies the `virtualisation` settings for the x1 system.
2026-01-15 13:25:56 +01:00
f8368162bb feat(nix): override at-spi2-core postInstall script
- Added a `postInstall` modification to adjust the Xwayland session script in `at-spi2-core`.
- Ensures proper replacement of `xprop` with the path to the package's binary.
2026-01-15 13:25:56 +01:00
2 changed files with 6 additions and 2 deletions

View file

@ -5,4 +5,10 @@ final: prev: {
./gnome-console-Add-image-and-file-path-pasting-support-for.patch ./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'
'';
});
} }

View file

@ -126,9 +126,7 @@ with lib.metacfg;
#''; #'';
virtualisation = { virtualisation = {
docker.enable = true;
libvirtd.enable = true; libvirtd.enable = true;
podman.dockerCompat = false;
}; };
system.autoUpgrade = { system.autoUpgrade = {