dotfiles/fixups.nix

7 lines
281 B
Nix
Raw Normal View History

2021-11-15 13:34:51 +01:00
(pkgs: super: {
2023-04-23 09:42:35 +02:00
# https://github.com/nix-community/emacs-overlay/issues/312#issuecomment-1506416929
emacsUnstablePgtk = super.emacsUnstablePgtk.overrideAttrs (prev: {
postFixup = builtins.replaceStrings [ "/bin/emacs" ] [ "/bin/.emacs-*-wrapped" ] prev.postFixup;
});
2021-11-15 13:34:51 +01:00
})