1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-10-22 04:57: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,11 +777,12 @@ in {
force = profile.containersForce; force = profile.containersForce;
}; };
"${profilesPath}/${profile.path}/search.json.mozlz4" = { "${profilesPath}/${profile.path}/search.json.mozlz4" =
enable = profile.search.enable; mkIf (profile.search.enable) {
force = profile.search.force; enable = profile.search.enable;
source = profile.search.file; force = profile.search.force;
}; source = profile.search.file;
};
"${profilesPath}/${profile.path}/extensions" = "${profilesPath}/${profile.path}/extensions" =
mkIf (profile.extensions != [ ]) { mkIf (profile.extensions != [ ]) {