mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
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;
|
||
|
};
|
||
|
};
|
||
|
}
|