nixfiles/home/c/programs/firefox/default.nix
2024-09-08 13:34:07 +01:00

55 lines
1 KiB
Nix

{inputs, ...}: {
programs.firefox = {
enable = true;
policies = {
DisablePocket = true;
DisableTelemetry = true;
};
profiles.c = {
bookmarks = [
{
name = "NixOS";
toolbar = true;
bookmarks = [
{
name = "Packages";
url = "https://search.nixos.org";
}
{
name = "Wiki";
url = "https://nixos.wiki";
}
];
}
{
name = "News";
toolbar = true;
bookmarks = [
{
name = "Al Jazeera";
url = "https://aljazeera.com";
}
];
}
];
containers = {};
settings = {};
userChrome = "";
userContent = "";
extensions = with inputs.firefox-addons.packages."x86_64-linux"; [
bitwarden
ublock-origin
darkreader
youtube-shorts-block
privacy-badger
return-youtube-dislikes
];
};
};
}