aboutsummaryrefslogtreecommitdiff
path: root/profiles/restrict.nix
blob: d7510226ca61651b307ad3644fc25fd871dcd72e (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 }: {
  policies = {
    DisableProfileImport = true;
    DisableProfileRefresh = true;

    DisableMasterPasswordCreation = true;
    DisableFeedbackCommands = true;
    DisableFirefoxAccounts = true;
    DisableFormHistory = true;   
    DisablePasswordReveal = true;

    DontCheckDefaultBrowser = true;

    DisableSecurityBypass = {
      InvalidCertificate = true;
      SafeBrowsing = false;
    };

    ExtensionSettings."*" = {
      blocked_install_message = "Installation von Erweiterungen ist nicht zugelassen.";
      install_sources = ["https://addons.mozilla.org/"];
      installation_mode = "blocked";
      allowed_types = ["extension"];
    };
  };
}