dotfiles/nix/overlays/lix.nix
Alyxia Sother 2daf5f1b05
[nix] Redo and restructure the entire config
Thanks @KaitlynEthylia :)
2024-07-11 19:07:47 +02:00

9 lines
235 B
Nix

(final: prev: {
lix = prev.lix.overrideAttrs (oldAttrs: {
postPatch = (oldAttrs.postPatch or "") + ''
substituteInPlace src/libmain/shared.cc \
--replace-fail "(Lix, like Nix)" "but for lesbians"
'';
});
})