mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-05-02 19:53:07 +00:00
~
This commit is contained in:
parent
bb5c008b93
commit
ba7685dc06
3 changed files with 30 additions and 4 deletions
|
@ -1,6 +1,27 @@
|
|||
{ pkgs, ... }: {
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
policies = {
|
||||
DisableTelemetry = true;
|
||||
DisableFirefoxStudies = true;
|
||||
EnableTrackingProtection = {
|
||||
Value = true;
|
||||
Locked = true;
|
||||
Cryptomining = true;
|
||||
Fingerprinting = true;
|
||||
};
|
||||
DisablePocket = true;
|
||||
ExtensionUpdate = false;
|
||||
FirefoxHome = {
|
||||
SponsoredTopSites = false;
|
||||
Highlights = false;
|
||||
Pocket = false;
|
||||
SponsoredPocket = false;
|
||||
};
|
||||
FirefoxSuggest = {
|
||||
SponsoredSuggestions = false;
|
||||
};
|
||||
};
|
||||
profiles.default = {
|
||||
isDefault = true;
|
||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
|
@ -12,6 +33,7 @@
|
|||
violentmonkey
|
||||
];
|
||||
settings = {
|
||||
"browser.aboutConfig.showWarning" = false;
|
||||
"browser.newtabpage.activity-stream.default.sites" = "https://en.wikipedia.org/";
|
||||
"browser.newtabpage.activity-stream.discoverystream.enabled" = false;
|
||||
"browser.newtabpage.activity-stream.feeds.telemetry" = false;
|
||||
|
@ -56,6 +78,10 @@
|
|||
name = "NixOS wiki";
|
||||
url = "https://nixos.wiki/";
|
||||
}
|
||||
{
|
||||
name = "Nix functions";
|
||||
url = "https://teu5us.github.io/nix-lib.html";
|
||||
}
|
||||
];
|
||||
search = {
|
||||
default = "DuckDuckGo";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue