aboutsummaryrefslogtreecommitdiff
path: root/profiles/minimalHome.nix
blob: 475a562fa92e19abd879398f663bfce49210bf69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ ffLib }: {
  meta.description = ''
    The default start page contains a search field, selected default sites,
    and past activity.

    The default sites include e.g. Amazon, Facebook, and Reddit, and should
    arguably not be advertised to new users.
  '';

  policies = {
    FirefoxHome = {
      Search = true;
      TopSites = false;
      Highlights = false;
      Pocket = false;
      Snippets = false;
      Locked = true; # TODO: false?
    };

    OverrideFirstRunPage = "";
    OverridePostUpdatePage = "";

    NewTabPage = false;
    NoDefaultBookmarks = true;
  };
}