From dac92509f14cb33d07cad0113ccd36077590b11a Mon Sep 17 00:00:00 2001 From: twoneis Date: Fri, 24 Nov 2023 04:09:59 +0100 Subject: [PATCH] added doom-emacs input --- flake.nix | 4 ++++ modules/home/editor/default.nix | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 82607c3..a341387 100644 --- a/flake.nix +++ b/flake.nix @@ -14,6 +14,10 @@ nixos-hardware = { url = "github:nixos/nixos-hardware/master"; }; + + nix-doom-emacs = { + url = "github:nix-community/nix-doom-emacs"; + }; }; outputs = { nixpkgs, home-manager, nixos-hardware, ... }: diff --git a/modules/home/editor/default.nix b/modules/home/editor/default.nix index bf4eccf..399d5d2 100644 --- a/modules/home/editor/default.nix +++ b/modules/home/editor/default.nix @@ -10,8 +10,4 @@ settings = import ./helix-config.nix; themes = import ./helix-theme.nix; }; - - programs.emacs = { - enable = true; - }; }