diff options
author | tilpner | 2020-04-05 21:29:32 +0200 |
---|---|---|
committer | tilpner | 2020-04-05 21:29:32 +0200 |
commit | c9d58b344866b75702ff395f45c278a24662077a (patch) | |
tree | 05f2efc7ff73d614f0889fc9cb9f3450f3c03f99 | |
parent | ada8db121af7571d03498c349030804dbe0e105f (diff) | |
download | firefox-profiles-c9d58b344866b75702ff395f45c278a24662077a.tar.gz firefox-profiles-c9d58b344866b75702ff395f45c278a24662077a.tar.xz firefox-profiles-c9d58b344866b75702ff395f45c278a24662077a.zip |
restrict: document
-rw-r--r-- | profiles/restrict.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/profiles/restrict.nix b/profiles/restrict.nix index d751022..60f8516 100644 --- a/profiles/restrict.nix +++ b/profiles/restrict.nix @@ -1,4 +1,10 @@ { ffLib }: { + meta.description = '' + This module assumes the user means to misconfigure the browser, and tries to prevent that. + It also attempts to keep the user from giving us any sensitive information in the first place. + This does not primarily improve the users security or privacy. + ''; + policies = { DisableProfileImport = true; DisableProfileRefresh = true; @@ -6,7 +12,7 @@ DisableMasterPasswordCreation = true; DisableFeedbackCommands = true; DisableFirefoxAccounts = true; - DisableFormHistory = true; + DisableFormHistory = true; DisablePasswordReveal = true; DontCheckDefaultBrowser = true; |