summaryrefslogtreecommitdiff
path: root/users/kassouni/firefox.nix
diff options
context:
space:
mode:
authorAlexander Kassouni <alex@kassouni.net>2026-09-26 11:41:51 -0700
committerAlexander Kassouni <alex@kassouni.net>2026-09-26 11:41:51 -0700
commitce3ce1cc3f3bce57a3961a37942bc509dfb5e455 (patch)
tree6ebb8d3e3d402697b69bc9dbcba39ce908ca696c /users/kassouni/firefox.nix
parent47dde98fd2cf11ea544bb1c8d8d548ee0bda0f54 (diff)
reorganize firefox, laptop stuff
Diffstat (limited to 'users/kassouni/firefox.nix')
-rw-r--r--users/kassouni/firefox.nix91
1 files changed, 0 insertions, 91 deletions
diff --git a/users/kassouni/firefox.nix b/users/kassouni/firefox.nix
deleted file mode 100644
index 3b9d30a..0000000
--- a/users/kassouni/firefox.nix
+++ /dev/null
@@ -1,91 +0,0 @@
-{ pkgs, ... }:
-{
- programs.firefox = {
- enable = true;
-
- policies = {
- ExtensionSettings = {
- "uBlock0@raymondhill.net" = {
- default_area = "navbar";
- install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
- installation_mode = "normal_installed";
- private_browsing = true;
- };
-
-
- "{d634138d-c276-4fc8-924b-40a0ea21d284}" = {
- default_area = "navbar";
- install_url = "https://addons.mozilla.org/firefox/downloads/latest/1password-x-password-manager/latest.xpi";
- installation_mode = "normal_installed";
- private_browsing = true;
- };
-
- "{9063c2e9-e07c-4c2c-9646-cfe7ca8d0498}" = {
- default_area = "menupanel";
- install_url = "https://addons.mozilla.org/firefox/downloads/latest/old-reddit-redirect/latest.xpi";
- installation_mode = "normal_installed";
- private_browsing = true;
- };
-
- "{d7742d87-e61d-4b78-b8a1-b469842139fa}" = {
- default_area = "menupanel";
- install_url = "https://addons.mozilla.org/firefox/downloads/latest/vimium-ff/latest.xpi";
- installation_mode = "normal_installed";
- private_browsing = true;
- };
- };
- };
-
- profiles.kassouni = {
- isDefault = true;
- bookmarks = {
- force = true;
- settings = [
- {
- name = "wikipedia";
- tags = [ "wiki" ];
- keyword = "wiki";
- url = "https://en.wikipedia.org/wiki/Special:Search?search=%s&go=Go";
- }
- {
- name = "Nix sites";
- toolbar = true;
- bookmarks = [
- {
- name = "homepage";
- url = "https://nixos.org/";
- }
- {
- name = "wiki";
- tags = [
- "wiki"
- "nix"
- ];
- url = "https://wiki.nixos.org/";
- }
- ];
- }
- ];
- };
- settings = {
- "browser.startup.homepage" = "about:blank";
- "browser.compactmode.show" = true;
- "startup.homepage_welcome_url" = "about:blank";
- "extensions.autoDisableScopes" = 0;
- "browser.newtabpage.enabled" = false;
- "identity.fxaccounts.enabled" = false;
- "browser.newtabpage.activity-stream.discoverystream.enabled" = false;
- "browser.newtabpage.activity-stream.enabled" = false;
- "browser.newtabpage.activity-stream.showSponsored" = false;
- "browser.newtabpage.activity-stream.showSponsoredTopSites" = false;
- "browser.newtabpage.activity-stream.widgets.enabled" = false;
- "browser.newtabpage.activity-stream.discoverystream.sections.enabled" = false;
-
- };
- search = {
- force = true;
- default = "google";
- };
- };
- };
-}