From 7cde8946c0b75bf8e229a9104f023634a8f8891b Mon Sep 17 00:00:00 2001 From: twoneis Date: Fri, 24 Nov 2023 04:13:37 +0100 Subject: [PATCH] added doom emacs --- modules/home/editor/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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; + }; }