nixos-config/modules/home/all/emacs.nix
2024-10-05 15:32:08 -04:00

21 lines
393 B
Nix

{ flake, pkgs, ... }:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
imports = [
inputs.nix-doom-emacs-unstraightened.hmModule
];
programs.doom-emacs = {
enable = true;
emacs = pkgs.emacs30;
doomDir = self + /doom.d;
experimentalFetchTree = true; # Disable if there are fetcher issues
extraPackages = epkgs: with epkgs; [
vterm
];
};
}