dotfiles/nix/secret-lib/emacs.nix
main 841b45a8b5
mu4e and evil-collection
Signed-off-by: main <magic_rb@redalder.org>
2021-11-08 22:01:07 +01:00

17 lines
217 B
Nix

{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.emacs;
in
{
options.emacs = {
mbsyncrc = mkOption {
type = types.path;
};
mu4eContexts = mkOption {
type = types.path;
};
};
}