mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
thunderbird: conditional search file
This commit is contained in:
parent
d4a3186de0
commit
2ffb68e209
1 changed files with 6 additions and 5 deletions
|
@ -408,7 +408,8 @@ in {
|
||||||
profile.extraConfig;
|
profile.extraConfig;
|
||||||
};
|
};
|
||||||
|
|
||||||
"${thunderbirdProfilesPath}/${name}/search.json.mozlz4" = {
|
"${thunderbirdProfilesPath}/${name}/search.json.mozlz4" =
|
||||||
|
mkIf (profile.search.enable) {
|
||||||
enable = profile.search.enable;
|
enable = profile.search.enable;
|
||||||
force = profile.search.force;
|
force = profile.search.force;
|
||||||
source = profile.search.file;
|
source = profile.search.file;
|
||||||
|
|
Loading…
Reference in a new issue