This commit is contained in:
2024-02-27 13:55:59 -07:00
parent 8bef0233ba
commit 33df980fa6
36 changed files with 586 additions and 241 deletions

8
modules/emacs/home.nix Normal file
View File

@@ -0,0 +1,8 @@
{ pkgs, ... }: {
programs.emacs = {
enable = true;
extraPackages = epkgs: [
epkgs.doom
];
};
}