user/settings/emacs.nix (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | { config, pkgs, lib, ... }: let inherit (pkgs) stdenv; pkgsUnstable = if stdenv.isDarwin then import <nixpkgs> {} else import <nixos-unstable> {}; editorScript = pkgs.writeScriptBin "edit" '' #!${pkgs.runtimeShell} if [ -z "$1" ]; then exec ${config.programs.emacs.finalPackage}/bin/emacsclient --create-frame --alternate-editor ${config.programs.emacs.finalPackage}/bin/emacs else exec ${config.programs.emacs.finalPackage}/bin/emacsclient --alternate-editor ${config.programs.emacs.finalPackage}/bin/emacs "$@" fi ''; desktopApplicationFile = pkgs.writeTextFile { name = "emacsclient.desktop"; destination = "/share/applications/emacsclient.desktop"; text = '' [Desktop Entry] Name=Emacsclient GenericName=Text Editor Comment=Edit text MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++; Exec=${editorScript}/bin/edit %F Icon=emacs Type=Application Terminal=false Categories=Development;TextEditor; StartupWMClass=Emacs Keywords=Text;Editor; ''; }; in { programs.emacs = { enable = true; extraPackages = epkgs: (with epkgs; [ ace-link all-the-icons almost-mono-themes add-node-modules-path ag all-the-icons amx auto-async-byte-compile avy basic-theme bash-completion caddyfile-mode company company-web company-tabnine counsel counsel-projectile crux docker-compose-mode dockerfile-mode dired-git-info editorconfig eink-theme eldoc-box emmet-mode esh-autosuggest esh-buf-stack esh-help eshell-fringe-status eshell-toggle eshell-up evil evil-collection evil-commentary evil-magit evil-mu4e evil-org evil-quickscope evil-space evil-surround eyebrowse feature-mode fish-completion flycheck flymake-diagnostic-at-point general git-gutter-fringe git-messenger git-timemachine gitattributes-mode gitconfig-mode gitignore-mode gitlab-ci-mode gitlab-ci-mode-flycheck goto-chg haskell-mode helpful ivy-hydra jinja2-mode js2-mode json-mode k8s-mode # kubernetes # kubernetes-evil ledger-mode lsp-mode lsp-ui lsp-haskell lsp-treemacs magit markdown-mode minions monotropic-theme moody nginx-mode nix-mode nix-update org-journal paredit php-mode posframe prettier-js projectile projectile-ripgrep quickrun rainbow-mode relative-buffers restclient ripgrep rjsx-mode scss-mode spacemacs-theme swiper toml-mode typescript-mode undo-tree use-package web-mode wgrep-ag ws-butler which-key yaml-mode ] ++ lib.optionals (!stdenv.isDarwin) [ pkgs.unstable.mu ]); }; home.packages = [ editorScript ]; nixpkgs.overlays = [ (self: super: { emacsPackagesNgGen = pkgsUnstable.emacsPackagesNgGen; emacs = pkgsUnstable.emacs; }) ]; home.sessionVariables = { EDITOR = "${editorScript}/bin/edit"; }; home.file.".emacs.d/init.el" = { source = ../emacs/.emacs.d/init.el; onChange = '' ${config.programs.emacs.finalPackage}/bin/emacs -batch -f batch-byte-compile .emacs.d/init.el ''; }; home.file.".emacs.d/eshell/" = { recursive = true; source = ../emacs/.emacs.d/eshell; }; home.file.".local/share/applications/emacsclient.desktop".source = desktopApplicationFile; } |