22 lines
608 B
Nix
22 lines
608 B
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
with lib; let
|
|
cfg = config.modules.programs.emacs;
|
|
username = config.modules.other.system.username;
|
|
in {
|
|
options.modules.programs.emacs.enable = mkEnableOption "emacs";
|
|
|
|
config = mkIf cfg.enable {
|
|
home-manager.users.${username} = {
|
|
programs.doom-emacs = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
(setq standard-indent 2)
|
|
(require 'evil)
|
|
(evil-mode 1)
|
|
'';
|
|
doomPrivateDir = ./doom.d;
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|