mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 03:29:45 +01:00
firefox: conditional search file
This commit is contained in:
parent
cb93ab1c99
commit
d4a3186de0
1 changed files with 6 additions and 5 deletions
|
@ -777,11 +777,12 @@ in {
|
|||
force = profile.containersForce;
|
||||
};
|
||||
|
||||
"${profilesPath}/${profile.path}/search.json.mozlz4" = {
|
||||
enable = profile.search.enable;
|
||||
force = profile.search.force;
|
||||
source = profile.search.file;
|
||||
};
|
||||
"${profilesPath}/${profile.path}/search.json.mozlz4" =
|
||||
mkIf (profile.search.enable) {
|
||||
enable = profile.search.enable;
|
||||
force = profile.search.force;
|
||||
source = profile.search.file;
|
||||
};
|
||||
|
||||
"${profilesPath}/${profile.path}/extensions" =
|
||||
mkIf (profile.extensions != [ ]) {
|
||||
|
|
Loading…
Reference in a new issue