1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-10-22 13:07:26 +02:00

firefox: conditional search file

This commit is contained in:
Austin Horstman 2024-10-17 09:19:51 -05:00
parent cb93ab1c99
commit d4a3186de0
No known key found for this signature in database

View file

@ -777,7 +777,8 @@ in {
force = profile.containersForce; force = profile.containersForce;
}; };
"${profilesPath}/${profile.path}/search.json.mozlz4" = { "${profilesPath}/${profile.path}/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;