2023-07-06 19:32:19 +00:00
|
|
|
{pkgs, ...}: {
|
2023-06-28 20:48:01 +00:00
|
|
|
programs.firefox = {
|
|
|
|
enable = true;
|
|
|
|
profiles.default = {
|
|
|
|
search.default = "DuckDuckGo";
|
|
|
|
search.force = true;
|
|
|
|
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
|
|
|
bitwarden
|
|
|
|
refined-github
|
|
|
|
ublock-origin
|
|
|
|
];
|
|
|
|
settings = {
|
|
|
|
"app.update.auto" = false;
|
|
|
|
"browser.formfill.enable" = false;
|
|
|
|
"browser.tabs.firefox-view" = false;
|
|
|
|
"browser.aboutConfig.showWarning" = false;
|
|
|
|
"browser.bookmarks.addedImportButton" = false;
|
|
|
|
"extensions.pocket.enabled" = false;
|
|
|
|
"browser.newtabpage.activity-stream.feeds.section.topstories" = false;
|
|
|
|
"browser.newtabpage.activity-stream.showSponsoredTopSites" = false;
|
|
|
|
"browser.newtabpage.pinned" = builtins.toJSON [
|
2023-07-06 19:32:19 +00:00
|
|
|
{url = "https://mynixos.com/";}
|
|
|
|
{url = "https://github.com/";}
|
|
|
|
{url = "https://git.jojodev.com/";}
|
2023-06-28 20:48:01 +00:00
|
|
|
];
|
|
|
|
};
|
2023-07-06 19:32:19 +00:00
|
|
|
bookmarks = [
|
|
|
|
{
|
2023-07-13 20:35:19 +00:00
|
|
|
name = "Toolbar";
|
2023-07-06 19:32:19 +00:00
|
|
|
toolbar = true;
|
|
|
|
bookmarks = [
|
|
|
|
{
|
2023-07-13 20:35:19 +00:00
|
|
|
name = "Gitea";
|
|
|
|
bookmarks = [
|
|
|
|
{
|
|
|
|
name = "gitea";
|
|
|
|
tags = ["gitea"];
|
|
|
|
keyword = "gitea";
|
|
|
|
url = "https://github.com/go-gitea/gitea";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "jojodev";
|
|
|
|
tags = ["gitea"];
|
|
|
|
keyword = "jojodev";
|
|
|
|
url = "https://git.jojodev.com";
|
|
|
|
}
|
|
|
|
];
|
2023-07-06 19:32:19 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
];
|
2023-06-28 20:48:01 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|