From ed8e9f5914b4652d9b943ca757c8062f03c7f493 Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Fri, 14 Aug 2020 23:28:27 +0200 Subject: [PATCH] feat: remove emacs --- home/editors/default.nix | 1 - home/editors/emacs.nix | 6 ------ 2 files changed, 7 deletions(-) delete mode 100644 home/editors/emacs.nix diff --git a/home/editors/default.nix b/home/editors/default.nix index 0b503f2..8e422b4 100644 --- a/home/editors/default.nix +++ b/home/editors/default.nix @@ -3,7 +3,6 @@ { imports = [ ./neovim.nix - ./emacs.nix ./vscode.nix ./omnisharp.nix ]; diff --git a/home/editors/emacs.nix b/home/editors/emacs.nix deleted file mode 100644 index d1d9418..0000000 --- a/home/editors/emacs.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ config, pkgs, ... }: - -{ - services.emacs.enable = true; - programs.emacs.enable = true; -}