1
Fork 0
satellite/home/features/desktop/firefox/default.nix

340 lines
11 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, inputs, ... }:
let
# {{{ Global extensions
extensions = with inputs.firefox-addons.packages.${pkgs.system}; ([
buster-captcha-solver
# REASON: returns 404 for now
# bypass-paywalls-clean
clearurls # removes ugly args from urls
cliget # Generates curl commands for downloading account-protected things
don-t-fuck-with-paste # disallows certain websites from disabling pasting
decentraleyes # Serves local copies of a bunch of things instead of reaching a CDN
gesturefy # mouse gestures
indie-wiki-buddy # redirects fandom wiki urls to the proper wikis
i-dont-care-about-cookies
localcdn # caches libraries locally
privacy-badger # blocks some trackers
privacy-pass # captcha stuff
skip-redirect # attempts to skip to the final reddirect for certain urls
terms-of-service-didnt-read
translate-web-pages
ublock-origin
unpaywall
user-agent-string-switcher
] ++
# Password store support
lib.lists.optional config.programs.password-store.enable passff
);
# }}}
in
{
programs.firefox = {
enable = true;
profiles.adrielus = {
2023-04-27 01:08:20 +02:00
# {{{ High level user settings
# Unique user id
id = 0;
# Make this the default user
isDefault = true;
2023-04-27 01:08:20 +02:00
# Forcefully replace the search configuration
search.force = true;
# Set default search engine
search.default = "Google";
# Set styles applied to every website
userContent = builtins.readFile ./userContent.css;
2023-04-27 01:08:20 +02:00
# }}}
# {{{ Extensions
extensions =
with inputs.firefox-addons.packages.${pkgs.system};
with lib.lists; flatten [
extensions
# List of profile-specific extensions
[
augmented-steam # Adds more info to steam
blocktube # Lets you block youtube channels
dearrow # Crowdsourced clickbait remover 💀
lovely-forks # displays forks on github
octolinker # github import to link thingy
octotree # github file tree
refined-github # a bunch of github modifications
return-youtube-dislikes
steam-database # adds info from steamdb on storepages
sponsorblock # skip youtube sponsors
vimium-c # vim keybinds
youtube-shorts-block
]
# summons a nvim instance inside the browser
(optional config.satellite.toggles.neovim.enable firenvim)
];
2023-04-27 01:08:20 +02:00
# }}}
# {{{ Search engines
search.engines =
let
# {{{ Search engine creation helpers
mkBasicSearchEngine = { aliases, url, param, icon ? null }: {
2023-04-27 01:08:20 +02:00
urls = [{
template = url;
params = [
{ name = param; value = "{searchTerms}"; }
];
}];
definedAliases = aliases;
} // (if icon == null then { } else { inherit icon; });
2023-04-27 01:08:20 +02:00
mkNixPackagesEngine = { aliases, type }:
mkBasicSearchEngine
2023-04-27 01:08:20 +02:00
{
aliases = aliases;
url = "https://search.nixos.org/${type}";
param = "query";
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
2023-04-27 01:08:20 +02:00
};
# }}}
in
# {{{ Engine declarations
{
"Nix Packages" = mkNixPackagesEngine {
aliases = [ "@np" "@nix-packages" ];
type = "packages";
};
"Nix options" = mkNixPackagesEngine {
aliases = [ "@no" "@nix-options" ];
type = "options";
};
"Pursuit" = mkBasicSearchEngine {
url = "https://pursuit.purescript.org/search";
param = "q";
aliases = [ "@ps" "@pursuit" ];
};
"Hoogle" = mkBasicSearchEngine {
url = "https://hoogle.haskell.org";
param = "hoogle";
aliases = [ "@hg" "@hoogle" ];
};
2023-04-27 01:08:20 +02:00
"Wikipedia" = mkBasicSearchEngine {
url = "https://en.wikipedia.org/wiki/Special:Search";
param = "search";
aliases = [ "@wk" "@wikipedia" ];
};
"Github" = mkBasicSearchEngine {
url = "https://github.com/search";
param = "q";
aliases = [ "@gh" "@github" ];
};
"Youtube" = mkBasicSearchEngine {
url = "https://www.youtube.com/results";
param = "search_query";
aliases = [ "@yt" "@youtube" ];
};
"Noita wiki" = mkBasicSearchEngine {
url = "https://noita.wiki.gg/index.php";
param = "search";
aliases = [ "@noita" ];
};
"Rain world wiki" = mkBasicSearchEngine {
url = "https://rainworld.miraheze.org/w/index.php";
param = "search";
aliases = [ "@rw" "@rain-world" ];
};
"Arch wiki" = mkBasicSearchEngine {
url = "https://wiki.archlinux.org/index.php";
param = "search";
aliases = [ "@aw" "@arch-wiki" ];
};
2023-04-27 01:08:20 +02:00
"Factorio wiki" = mkBasicSearchEngine {
url = "https://wiki.factorio.com/index.php";
param = "search";
aliases = [ "@fw" "@factorio-wiki" ];
};
"Factorio mod portal" = mkBasicSearchEngine {
url = "https://mods.factorio.com/";
param = "query";
aliases = [ "@fm" "@factorio-mods" ];
};
"Google".metaData.alias = "@g";
};
2023-04-27 01:08:20 +02:00
# }}}
# }}}
# {{{ Other lower level settings
settings = {
# Required for figma to be able to export to svg
"dom.events.asyncClipboard.clipboardItem" = true;
2023-11-15 17:43:12 +01:00
# Allow custom css
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
# Set language to english
"general.useragent.locale" = "en-GB";
2023-05-24 03:17:09 +02:00
# Do not restore sessions after what looks like a "crash"
"browser.sessionstore.resume_from_crash" = false;
2023-11-15 17:43:12 +01:00
# Inspired by https://github.com/TLATER/dotfiles/blob/b39af91fbd13d338559a05d69f56c5a97f8c905d/home-config/config/graphical-applications/firefox.nix
# {{{ Performance settings
"gfx.webrender.all" = true; # Force enable GPU acceleration
"media.ffmpeg.vaapi.enabled" = true;
"widget.dmabuf.force-enabled" = true; # Required in recent Firefoxes
# }}}
# {{{ New tab page
"browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons" =
false;
"browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features" =
false;
"browser.newtabpage.activity-stream.feeds.snippets" = false;
"browser.newtabpage.activity-stream.improvesearch.topSiteSearchShortcuts.havePinned" = "";
"browser.newtabpage.activity-stream.improvesearch.topSiteSearchShortcuts.searchEngines" = "";
"browser.newtabpage.activity-stream.section.highlights.includePocket" =
false;
"browser.newtabpage.activity-stream.showSponsored" = false;
"browser.newtabpage.activity-stream.showSponsoredTopSites" = false;
"browser.newtabpage.pinned" = false;
# }}}
# {{{ Privacy
"browser.contentblocking.category" = "strict";
"app.shield.optoutstudies.enabled" = false;
"dom.security.https_only_mode" = true;
"dom.security.https_only_mode_ever_enabled" = true;
"datareporting.policy.dataSubmissionEnable" = false;
"datareporting.policy.dataSubmissionPolicyAcceptedVersion" = 2;
"privacy.trackingprotection.enabled" = true;
"privacy.trackingprotection.socialtracking.enabled" = true;
"browser.discovery.enabled" = false;
# }}}
# Keep the reader button enabled at all times; really don't
# care if it doesn't work 20% of the time, most websites are
# crap and unreadable without this
"reader.parse-on-load.force-enabled" = true;
# Hide the "sharing indicator", it's especially annoying
# with tiling WMs on wayland
"privacy.webrtc.legacyGlobalIndicator" = false;
# Disable auto update checks
"app.update.auto" = false;
# Do not include "switch to [tab]" in search results
"browser.urlbar.suggest.openpage" = false;
# Hide random popup: https://forums.linuxmint.com/viewtopic.php?t=379164
"browser.protections_panel.infoMessage.seen" = true;
# Disable shortcut for quitting :)
"browser.quitShortcut.disabled" = true;
# Do not show dialog for getting panes in the addons menu (?)
# http://kb.mozillazine.org/Extensions.getAddons.showPane
"extensions.getAddons.showPane" = false;
# Do not recommend addons
"extensions.htmlaboutaddons.recommendations.enabled" = false;
# Link saving thingy (?)
"extensions.pocket.enabled" = false;
# Disable firefox accounts (?)
"identity.fxaccounts.enabled" = false;
};
2023-04-27 01:08:20 +02:00
# }}}
};
2023-01-15 23:04:11 +01:00
2023-04-27 01:08:20 +02:00
# {{{ Standalone "apps" which actually run inside a browser.
apps.extensions = extensions;
apps.app = {
2023-03-12 05:24:25 +01:00
# {{{ Job stuff
2023-07-07 21:25:05 +02:00
# {{{ Asana
2023-03-12 05:24:25 +01:00
asana = {
url = "https://app.asana.com/";
icon = ./icons/asana.png;
displayName = "Asana";
id = 1;
};
2023-07-07 21:25:05 +02:00
# }}}
# {{{ Clockodo
2023-03-12 05:24:25 +01:00
clockodo = {
url = "https://my.clockodo.com/en/";
icon = ./icons/clockodo.png;
displayName = "Clockodo";
id = 2;
};
# }}}
2023-07-07 21:25:05 +02:00
# }}}
# {{{ Gitlab
2023-03-12 05:24:25 +01:00
gitlab = {
url = "https://gitlab.com";
icon = ./icons/gitlab.png;
displayName = "Gitlab";
id = 3;
};
2023-07-07 21:25:05 +02:00
# }}}
# {{{ Desmos
desmos = {
url = "https://www.desmos.com/calculator";
icon = ./icons/desmos.png;
displayName = "Desmos";
id = 4;
};
2023-07-07 21:25:05 +02:00
# }}}
# {{{ Monkey type
monkey-type = {
url = "https://monkeytype.com/";
icon = ./icons/monkeytype.png;
displayName = "Monkeytype";
id = 5;
};
2023-07-07 21:25:05 +02:00
# }}}
# {{{ Syncthing
syncthing = {
url = "http://localhost:8384/";
icon = ./icons/syncthing.png;
displayName = "Syncthing";
id = 6;
};
# }}}
2023-03-12 05:24:25 +01:00
};
2023-04-27 01:08:20 +02:00
# }}}
2023-03-12 05:24:25 +01:00
};
2023-04-27 01:08:20 +02:00
# {{{ Make firefox the default
# Use firefox as the default browser to open stuff.
2023-04-27 15:36:14 +02:00
xdg.mimeApps.defaultApplications = {
"text/html" = [ "firefox.desktop" ];
"text/xml" = [ "firefox.desktop" ];
"x-scheme-handler/http" = [ "firefox.desktop" ];
"x-scheme-handler/https" = [ "firefox.desktop" ];
};
2023-04-27 01:08:20 +02:00
# Tell apps firefox is the default browser using an env var.
home.sessionVariables.BROWSER = "firefox";
# }}}
# {{{ Persistence
2023-06-09 13:17:34 +02:00
satellite.persistence.at.state.apps.Firefox.directories = [
2023-04-27 01:08:20 +02:00
".mozilla/firefox" # More important stuff
];
2023-06-09 13:17:34 +02:00
satellite.persistence.at.cache.apps.Firefox.directories = [
"${config.xdg.cacheHome}/mozilla/firefox" # Non important cache
];
2023-04-27 01:08:20 +02:00
# }}}
}
2023-05-24 03:17:09 +02:00