diff --git a/modules/home/editor/default.nix b/modules/home/editor/default.nix index 399d5d2..7b2a250 100644 --- a/modules/home/editor/default.nix +++ b/modules/home/editor/default.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: { +{ pkgs, nix-doom-emacs, ... }: { home.packages = with pkgs; [ nil marksman @@ -10,4 +10,9 @@ settings = import ./helix-config.nix; themes = import ./helix-theme.nix; }; + + programs.doom-emacs = { + enable = true; + doomPrivateDir = ./doom.d; + }; }