spectre_nixcfg/emacs/emacs.nix

14 lines
224 B
Nix
Raw Permalink Normal View History

2025-06-18 02:51:43 -04:00
{ lib, pkgs, config, ... }:
{
programs.emacs =
let
emacsPath = ../emacs;
in {
enable = true;
extraConfig = "
(add-to-list 'load-path' \"${emacsPath}\")
(load \"beluga-mode.el\")
";
};
}