01e44ac1f9
This commit removes all references to emacs24 with the exception of emacs24-macports. The two folders in `pkgs/applications/editors` named `emacs-24` and `emacs-24` are consolidated to a new `emacs` folder. Various parts in nixpkgs also referenced `emacs24Packages` (pinned to `emacs24`) explicitly where `emacsPackages` (non-pinned) is more appropriate. These references get fixed by this commit too.
18 lines
673 B
EmacsLisp
18 lines
673 B
EmacsLisp
;; NixOS specific load-path
|
|
(setq load-path
|
|
(append (reverse (mapcar (lambda (x) (concat x "/share/emacs/site-lisp/"))
|
|
(split-string (or (getenv "NIX_PROFILES") ""))))
|
|
load-path))
|
|
|
|
;;; Make `woman' find the man pages
|
|
(eval-after-load 'woman
|
|
'(setq woman-manpath
|
|
(append (reverse (mapcar (lambda (x) (concat x "/share/man/"))
|
|
(split-string (or (getenv "NIX_PROFILES") ""))))
|
|
woman-manpath)))
|
|
|
|
;; Make tramp work for remote NixOS machines
|
|
;;; NOTE: You might want to add
|
|
(eval-after-load 'tramp
|
|
'(add-to-list 'tramp-remote-path "/run/current-system/sw/bin"))
|