mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
14 lines
367 B
Nix
14 lines
367 B
Nix
{ config, pkgs, lib, ... }: let
|
|
inherit (lib.strings) splitString;
|
|
inherit (lib.lists) elemAt;
|
|
in {
|
|
programs.doom-emacs = {
|
|
enable = true;
|
|
doomPrivateDir = ./doom.d;
|
|
emacsPackagesOverlay = self: super: {
|
|
magit-delta = super.magit-delta.overrideAttrs (esuper: {
|
|
buildInputs = esuper.buildInputs ++ [ pkgs.git ];
|
|
});
|
|
};
|
|
};
|
|
}
|