Fix preferences
This commit is contained in:
parent
6adcc91d50
commit
6714055cc8
1 changed files with 12 additions and 3 deletions
|
@ -1,3 +1,12 @@
|
|||
{
|
||||
"browser.urlbar.suggest.topsites" = false;
|
||||
}
|
||||
let
|
||||
mkPreferences = prefs: builtins.concatStringsSep
|
||||
"\n"
|
||||
(map
|
||||
(p: ''user_pref("${p}", ${builtins.toJSON prefs.${p}});'')
|
||||
(builtins.attrNames prefs));
|
||||
in
|
||||
mkPreferences {
|
||||
prefs = {
|
||||
"browser.urlbar.suggest.topsites" = false;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue