diff options
author | Franck Cuny <franck@fcuny.net> | 2023-05-07 09:15:36 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-05-07 09:15:36 -0700 |
commit | 47043d7d7d599989beb777592e552641ee493a60 (patch) | |
tree | dfe20624e1efcba50e5cb85f9dfb74ac57816c16 /home/mail/default.nix | |
parent | profiles/workstation: move element (matrix client) (diff) | |
download | world-47043d7d7d599989beb777592e552641ee493a60.tar.gz |
home: get rid of mail / gpg modules
I don't use GPG anymore and I don't read mail in Emacs anymore.
Diffstat (limited to '')
-rw-r--r-- | home/mail/default.nix | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/home/mail/default.nix b/home/mail/default.nix deleted file mode 100644 index 88cae37..0000000 --- a/home/mail/default.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ config, lib, ... }: -let - cfg = config.my.home.mail; - mkRelatedOption = desc: lib.mkEnableOption desc // { default = cfg.enable; }; -in -{ - imports = [ ./accounts ]; - options.my.home.mail = with lib; { - enable = mkEnableOption "email configuration"; - }; - config = { accounts.email = { maildirBasePath = ".mail"; }; }; -} |