mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 05:03:09 +00:00
notmuch: use writeShellScript
This commit is contained in:
parent
e9beef31eb
commit
ee01d24a45
1 changed files with 2 additions and 6 deletions
|
@ -186,18 +186,14 @@ in
|
|||
let
|
||||
hook = name: cmds:
|
||||
{
|
||||
"${notmuchIni.database.path}/.notmuch/hooks/${name}" = {
|
||||
source = pkgs.writeScript name ''
|
||||
#!${pkgs.runtimeShell}
|
||||
|
||||
"${notmuchIni.database.path}/.notmuch/hooks/${name}".source =
|
||||
pkgs.writeShellScript name ''
|
||||
export PATH="${pkgs.notmuch}/bin''${PATH:+:}$PATH"
|
||||
export NOTMUCH_CONFIG="${config.xdg.configHome}/notmuch/notmuchrc"
|
||||
export NMBGIT="${config.xdg.dataHome}/notmuch/nmbug"
|
||||
|
||||
${cmds}
|
||||
'';
|
||||
executable = true;
|
||||
};
|
||||
};
|
||||
in
|
||||
optionalAttrs (cfg.hooks.preNew != "")
|
||||
|
|
Loading…
Reference in a new issue