This commit is contained in:
Tao Tien 2024-03-23 01:24:31 -07:00
parent b403406470
commit 0b55473b24
4 changed files with 17 additions and 14 deletions

View file

@ -9,7 +9,7 @@ in {
imports = [
(import ./helix.nix {inherit pkgs inputs;})
# ./plasma.nix
./firefox.nix
# ./firefox.nix
];
home.file.".cargo/config.toml".text = cargoConfig;

View file

@ -1,14 +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;
};
# 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;
# };
};
}