summaryrefslogtreecommitdiff
path: root/modules/emacs.nix
diff options
context:
space:
mode:
authorGrisha Shipunov2025-01-03 00:22:37 +0100
committerGrisha Shipunov2025-01-03 00:27:57 +0100
commita17948fc3283156fc0bf952e137bd37490725f0f (patch)
tree77ef8d328e94b20fc89bcb06319258972c64b52f /modules/emacs.nix
parent08f643637f3630833edf2f84627ef45e22d579a9 (diff)
remove dead code
Diffstat (limited to 'modules/emacs.nix')
-rw-r--r--modules/emacs.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/modules/emacs.nix b/modules/emacs.nix
deleted file mode 100644
index 74113dd..0000000
--- a/modules/emacs.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ pkgs, inputs, lib, ... }:
-
-{
- environment.systemPackages = with pkgs; [
- direnv
- ];
-
- nixpkgs.overlays = [
- inputs.emacs-overlay.overlay
- ];
-
- services.emacs = {
- install = true;
- enable = false;
- package = with pkgs; ((emacsPackagesFor (emacs-pgtk.overrideAttrs (old: {
- passthru = old.passthru // {
- treeSitter = true;
- };
- }))).emacsWithPackages (epkgs: with epkgs; [
- # treesitter bits
- treesit-grammars.with-all-grammars
-
- vterm
- pdf-tools
- ]));
- defaultEditor = lib.mkDefault true;
- };
-
-}