From 18dc64bb442ceda06f780abe29f863fdd584cd09 Mon Sep 17 00:00:00 2001 From: twoneis Date: Fri, 24 Nov 2023 04:18:08 +0100 Subject: [PATCH] removed emacs --- flake.nix | 4 ---- modules/home/editor/default.nix | 7 +------ 2 files changed, 1 insertion(+), 10 deletions(-) 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; - }; }