mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
841b45a8b5
Signed-off-by: main <magic_rb@redalder.org>
17 lines
217 B
Nix
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;
|
|
};
|
|
};
|
|
}
|