2024-10-28 21:26:34 +01:00
|
|
|
{ config, lib, ... }:
|
2024-05-28 20:46:24 +02:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.modules.home.editors.emacs;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.modules.home.editors.emacs = {
|
|
|
|
enable = mkEnableOption ''
|
|
|
|
Enable emacs with my custom configurations
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
programs.doom-emacs = {
|
|
|
|
enable = true;
|
|
|
|
doomPrivateDir = ./doom.d;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|