hm: add emacs
This commit is contained in:
parent
c5be754716
commit
c2391b31d7
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
# Import configurations for better modularity.
|
# Import configurations for better modularity.
|
||||||
imports = [
|
imports = [
|
||||||
|
./programs/emacs
|
||||||
./programs/fish
|
./programs/fish
|
||||||
./programs/git.nix
|
./programs/git.nix
|
||||||
./programs/hyprland
|
./programs/hyprland
|
||||||
|
|
14
programs/emacs/default.nix
Normal file
14
programs/emacs/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.emacs = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
# Optional for DOOM
|
||||||
|
clang
|
||||||
|
coreutils
|
||||||
|
fd
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue