14 lines
224 B
Nix
14 lines
224 B
Nix
|
|
{ lib, pkgs, config, ... }:
|
||
|
|
{
|
||
|
|
programs.emacs =
|
||
|
|
let
|
||
|
|
emacsPath = ../emacs;
|
||
|
|
in {
|
||
|
|
enable = true;
|
||
|
|
extraConfig = "
|
||
|
|
(add-to-list 'load-path' \"${emacsPath}\")
|
||
|
|
(load \"beluga-mode.el\")
|
||
|
|
";
|
||
|
|
};
|
||
|
|
}
|