added doom emacs

This commit is contained in:
twoneis 2023-11-24 04:13:37 +01:00
parent d7b12a2fe0
commit 7cde8946c0

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: { { pkgs, nix-doom-emacs, ... }: {
home.packages = with pkgs; [ home.packages = with pkgs; [
nil nil
marksman marksman
@ -10,4 +10,9 @@
settings = import ./helix-config.nix; settings = import ./helix-config.nix;
themes = import ./helix-theme.nix; themes = import ./helix-theme.nix;
}; };
programs.doom-emacs = {
enable = true;
doomPrivateDir = ./doom.d;
};
} }