aboutsummaryrefslogtreecommitdiff
path: root/profiles/noClutter.nix
blob: 8c98defe1bc4e85af44530b020a263c2a7a688a4 (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;
  };
}