blob: e1cee19aee311df70c84819f93f4ef45789ab52e (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
{ pkgs, ... }:
{
programs.firefox = {
enable = true;
policies = {
ExtensionSettings = {
"uBlock0@raymondhill.net" = {
default_area = "navbar";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
installation_mode = "normal_installed";
private_browsing = true;
};
"{d634138d-c276-4fc8-924b-40a0ea21d284}" = {
default_area = "navbar";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/1password-x-password-manager/latest.xpi";
installation_mode = "normal_installed";
private_browsing = true;
};
"{9063c2e9-e07c-4c2c-9646-cfe7ca8d0498}" = {
default_area = "menupanel";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/old-reddit-redirect/latest.xpi";
installation_mode = "normal_installed";
private_browsing = true;
};
};
};
profiles.kassouni = {
isDefault = true;
bookmarks = {
force = true;
settings = [
{
name = "wikipedia";
tags = [ "wiki" ];
keyword = "wiki";
url = "https://en.wikipedia.org/wiki/Special:Search?search=%s&go=Go";
}
{
name = "Nix sites";
toolbar = true;
bookmarks = [
{
name = "homepage";
url = "https://nixos.org/";
}
{
name = "wiki";
tags = [
"wiki"
"nix"
];
url = "https://wiki.nixos.org/";
}
];
}
];
};
settings = {
"browser.startup.homepage" = "about:blank";
"startup.homepage_welcome_url" = "about:blank";
"extensions.autoDisableScopes" = 0;
"browser.newtabpage.enabled" = false;
"identity.fxaccounts.enabled" = false;
"browser.newtabpage.activity-stream.discoverystream.enabled" = false;
"browser.newtabpage.activity-stream.enabled" = false;
"browser.newtabpage.activity-stream.showSponsored" = false;
"browser.newtabpage.activity-stream.showSponsoredTopSites" = false;
"browser.newtabpage.activity-stream.widgets.enabled" = false;
"browser.newtabpage.activity-stream.discoverystream.sections.enabled" = false;
};
search = {
force = true;
default = "google";
};
};
};
}
|