diff options
-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; |