mirror of
https://github.com/nix-community/home-manager
synced 2024-11-27 05:29:46 +01:00
afew: add module
This commit is contained in:
parent
dacc07136c
commit
061c7b633f
3 changed files with 60 additions and 0 deletions
|
@ -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'.
|
||||
'';
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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
52
modules/programs/afew.nix
Normal 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}
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue