linuxware/programs/emacs/default.nix

15 lines
169 B
Nix
Raw Normal View History

2024-06-26 02:12:09 -03:00
{ pkgs, ... }:
{
programs.emacs = {
enable = true;
home.packages = with pkgs; [
# Optional for DOOM
clang
coreutils
fd
];
};
}