1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-22 22:48:31 +02:00

afew: add module

This commit is contained in:
Ben Sima 2018-11-10 07:55:21 -08:00 committed by Robert Helgesson
parent dacc07136c
commit 061c7b633f
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
3 changed files with 60 additions and 0 deletions

View File

@ -823,6 +823,13 @@ in
A new module is available: 'programs.astroid'.
'';
}
{
time = "2018-11-18T21:41:51+00:00";
message = ''
A new module is available: 'programs.afew'.
'';
}
];
};
}

View File

@ -26,6 +26,7 @@ let
./misc/qt.nix
./misc/xdg.nix
./programs/alot.nix
./programs/afew.nix
./programs/autorandr.nix
./programs/astroid.nix
./programs/bash.nix

52
modules/programs/afew.nix Normal file
View File

@ -0,0 +1,52 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.afew;
in
{
options.programs.afew = {
enable = mkEnableOption "the afew initial tagging script for Notmuch";
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]
'';
description = ''
Extra lines added to afew configuration file. Available
configuration options are described in the afew manual:
<link xlink:href="https://afew.readthedocs.io/en/latest/configuration.html" />.
'';
};
};
config = mkIf cfg.enable {
home.packages = [ pkgs.afew ];
xdg.configFile."afew/config".text = ''
# Generated by Home Manager.
# See https://afew.readthedocs.io/
${cfg.extraConfig}
'';
};
}