hm: add emacs

This commit is contained in:
Alexandre Cavalheiro 2024-06-26 02:12:09 -03:00
parent c5be754716
commit c2391b31d7
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
2 changed files with 15 additions and 0 deletions

View file

@ -7,6 +7,7 @@
# Import configurations for better modularity.
imports = [
./programs/emacs
./programs/fish
./programs/git.nix
./programs/hyprland

View file

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