nixos/modules/dev/editors/emacs/default.nix
2023-09-04 13:26:14 +04:00

24 lines
477 B
Nix

{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.dev.editors.emacs;
in
{
options.modules.dev.editors.emacs = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
# bro
direnv
# oh my days
emacs
];
home-manager.users.sako.home.file.".emacs.d" = {
enable = true;
source = ../../../../config/emacs;
recursive = true;
};
};
}