12 lines
188 B
Nix
12 lines
188 B
Nix
{ inputs, config, pkgs, ... }: {
|
|
programs.emacs = {
|
|
enable = true;
|
|
extraPackages = epkgs: with epkgs; [
|
|
mu4e
|
|
vterm
|
|
all-the-icons
|
|
nerd-icons
|
|
];
|
|
};
|
|
}
|