linuxware/programs/emacs/default.nix

15 lines
169 B
Nix

{ pkgs, ... }:
{
programs.emacs = {
enable = true;
home.packages = with pkgs; [
# Optional for DOOM
clang
coreutils
fd
];
};
}