summaryrefslogtreecommitdiff
path: root/modules/emacs.nix
diff options
context:
space:
mode:
authorGrigory Shipunov2023-08-05 20:48:58 +0200
committerGrigory Shipunov2023-08-05 20:51:15 +0200
commit9e5d5bd874850df8090c6b43a09bd6fab74e537c (patch)
tree718ea139ed960358204472ec7e7151c73a37035e /modules/emacs.nix
parent8b8d90cec49f9af706d0a1fc090c89441943b088 (diff)
retire toaster and 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;
- };
-
-}