nixos/modules/dev/editors/emacs/default.nix

33 lines
584 B
Nix
Raw Normal View History

2023-09-04 12:59:43 +04:00
{
2023-09-16 11:52:57 +04:00
outputs,
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.modules.dev.editors.emacs;
in {
2023-09-04 12:59:43 +04:00
options.modules.dev.editors.emacs = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
# bro
direnv
# oh my days
emacs
2023-09-04 12:59:43 +04:00
];
home-manager.users.sako.home.file.".emacs.d" = {
2023-09-04 13:26:14 +04:00
enable = true;
2023-09-04 12:59:43 +04:00
source = ../../../../config/emacs;
recursive = true;
};
2023-09-05 13:41:34 +04:00
fonts.fonts = with pkgs; [
2023-09-16 11:52:57 +04:00
(nerdfonts.override {fonts = ["JetBrainsMono"];})
2023-09-05 13:41:34 +04:00
];
2023-09-04 12:59:43 +04:00
};
}