2025-06-11 15:26:04 -07:00

17 lines
258 B
Nix

{ pkgs, config, ... }:
{
programs.emacs = {
enable = true;
package = pkgs.emacs-unstable-pgtk;
extraPackages = epkgs: [
epkgs.dracula-theme
pkgs.shellcheck
# for file search
pkgs.fd
];
extraConfig = "";
};
}