2018-11-10 16:55:21 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.afew;
|
|
|
|
|
2021-04-28 21:58:49 +02:00
|
|
|
in {
|
2018-11-10 16:55:21 +01:00
|
|
|
options.programs.afew = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption "the afew initial tagging script for Notmuch";
|
2018-11-10 16:55:21 +01:00
|
|
|
|
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = ''
|
|
|
|
[SpamFilter]
|
|
|
|
[KillThreadsFilter]
|
|
|
|
[ListMailsFilter]
|
|
|
|
[ArchiveSentMailsFilter]
|
|
|
|
[InboxFilter]
|
|
|
|
'';
|
|
|
|
example = ''
|
|
|
|
[SpamFilter]
|
|
|
|
|
|
|
|
[Filter.0]
|
|
|
|
query = from:pointyheaded@boss.com
|
|
|
|
tags = -new;+boss
|
|
|
|
message = Message from above
|
|
|
|
|
|
|
|
[InboxFilter]
|
|
|
|
'';
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2018-11-10 16:55:21 +01:00
|
|
|
Extra lines added to afew configuration file. Available
|
|
|
|
configuration options are described in the afew manual:
|
2023-07-01 01:30:13 +02:00
|
|
|
<https://afew.readthedocs.io/en/latest/configuration.html>.
|
2018-11-10 16:55:21 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ pkgs.afew ];
|
|
|
|
|
|
|
|
xdg.configFile."afew/config".text = ''
|
|
|
|
# Generated by Home Manager.
|
|
|
|
# See https://afew.readthedocs.io/
|
|
|
|
|
|
|
|
${cfg.extraConfig}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|