aboutsummaryrefslogtreecommitdiff
path: root/profiles/noClutter.nix
blob: 42e864af479aa1ad54616a4e4d5ddd8213cfb311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ }: {
  meta.description = ''
    Disable potentionally distracting features, to let the user focus.

    This module does not aim to improve privacy or security.
  '';

  policies = {
    HomePage.StartPage = "none";
  };

  preferences = {
    browser.slowStartup.notificationDisabled = true;
  };
}