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