nix-community / nix-doom-emacs

doom-emacs packaged for Nix [maintainers=@thiagokokada]
MIT License
218 stars 43 forks source link

Enable imagemagick #391

Open danielabrozzoni opened 1 year ago

danielabrozzoni commented 1 year ago

Hey, I'm using nix-doom-emacs on commit 6c47eaa13d6f825b8a34df065f0e8260da0d3a1b and I'm trying to display an image, but I get a "No images to display inline" error. I think the problem is that emacs-doom doesn't have imagemagick support, anyone knows how I could enable it?

My home-manager.nix looks like this:

let
  doom-emacs = pkgs.callPackage (builtins.fetchTarball {
    url =
      "https://github.com/nix-community/nix-doom-emacs/archive/6c47eaa13d6f825b8a34df065f0e8260da0d3a1b.zip";
  }) {
    doomPrivateDir = ./doom.d;
  };
in {
    [...]
    programs.emacs = {
      enable = true;
      package = doom-emacs;
    };
  };
}
ckiee commented 1 year ago

Works here on nix-doom-emacs rev 17673891a41c747d485b9407cb3b50b3156395ee. Read pinned issues, this project is slowly but surely going out of date until someone steps up to fix the eldritch horrors behind it.