Refactor the whole configuration #1

Merged
caem merged 354 commits from refactor into master 2025-02-01 14:05:16 +01:00
Showing only changes of commit 6714055cc8 - Show all commits

View file

@ -1,3 +1,12 @@
{ let
"browser.urlbar.suggest.topsites" = false; 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;
};
}