aboutsummaryrefslogtreecommitdiff
path: root/profiles/noAccounts.nix
blob: 3ca523ddb6fec34c8308f235743bd073a2bb01f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ }: {
  meta.description = ''
    Disable Firefox Accounts.

    This may inconvenience users who already use them on other devices,
    but if we otherwise prevent the local storage of browsing information,
    it would be inconsistent to let the user sign in and potentionally
    store that same information remotely.
  '';

  preferences = {
    identity.fxaccounts.enabled = false;
  };
}