This commit is contained in:
Tao Tien 2024-03-22 23:26:56 -07:00
parent ce6b71103d
commit 556b270fc5
3 changed files with 21 additions and 0 deletions

14
users/tao/firefox.nix Normal file
View file

@ -0,0 +1,14 @@
{...}: {
programs.firefox = {
policies = {
};
enable = true;
profiles.default.settings = {
"browser.newtabpage.activity-stream.feeds.discoverystreamfeed" = false;
"browser.newtabpage.activity-stream.feeds.section.topstories" = false;
"browser.newtabpage.activity-stream.section.highlights.includePocket" = false;
"browser.newtabpage.activity-stream.showSponsored" = false;
"extensions.pocket.enabled" = false;
};
};
}