aboutsummaryrefslogtreecommitdiff
path: root/home-manager/programs/firefox/default.nix
blob: 92d8e298b745f21be1eb53df287cea84fdc60ffa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{ pkgs, config, inputs, ... }:
let
  nur = import inputs.nurpkgs {
    inherit pkgs;
    nurpkgs = pkgs;
  };
  extensions = with nur.repos.rycee.firefox-addons; [
    bitwarden
    ghostery
    switchyomega
    sponsorblock
    return-youtube-dislikes
  ];
  userConfig = builtins.readFile ./user.js;
  configOverrides = ''

  '';
  extraConfig = userConfig + configOverrides;
  engines = {
    "Brave" = {
      urls = [{ template = "https://search.brave.com/search?q={searchTerms}"; }];
      iconUpdateURL = "https://cdn.search.brave.com/serp/v2/_app/immutable/assets/safari-pinned-tab.539899c7.svg";
      updateInterval = 24 * 60 * 60 * 1000;
      definedAliases = [ "!br" ];
    };
    "NixOS" = {
      urls = [{ template = "https://search.nixos.org/packages?channel=unstable&from=0&size=50&sort=relevance&type=packages&query={searchTerms}"; }];
      iconUpdateURL = "https://nixos.org/favicon.png";
      updateInterval = 24 * 60 * 60 * 1000;
      definedAliases = [ "!ns" ];
    };
    "HomeManager" = {
      urls = [{ template = "https://mipmip.github.io/home-manager-option-search/?query={searchTerms}"; }];
      iconUpdateURL = "https://github.com/mipmip/home-manager-option-search/blob/main/images/favicon.png";
      updateInterval = 24 * 60 * 60 * 1000;
      definedAliases = [ "!hs" ];
    };
    "ai question" = {
      urls = [{ template = "https://iask.ai/?mode=question&q={searchTerms}"; }];
      iconUpdateURL = "https://iask.ai/favicons/favicon-32x32-650bd8771fdea8866630408578e381cc.png?vsn=d";
      updateInterval = 24 * 60 * 60 * 1000;
      definedAliases = [ "!aq" ];
    };
    "ai forums" = {
      urls = [{ template = "https://iask.ai/?mode=forums&q={searchTerms}"; }];
      iconUpdateURL = "https://iask.ai/favicons/favicon-32x32-650bd8771fdea8866630408578e381cc.png?vsn=d";
      updateInterval = 24 * 60 * 60 * 1000;
      definedAliases = [ "!af" ];
    };
    "ai wiki" = {
      urls = [{ template = "https://iask.ai/?mode=wiki&q={searchTerms}"; }];
      iconUpdateURL = "https://iask.ai/favicons/favicon-32x32-650bd8771fdea8866630408578e381cc.png?vsn=d";
      updateInterval = 24 * 60 * 60 * 1000;
      definedAliases = [ "!aw" ];
    };
    "FastGPT" = {
      urls = [{ template = "https://labs.kagi.com/fastgpt?query={searchTerms}"; }];
      definedAliases = [ "!fq" ];
    };
    "NixWiki" = {
      urls = [{ template = "https://nixos.wiki/index.php?search={searchTerms}&go=Go"; }];
      iconUpdateURL = "https://nixos.org/favicon.png";
      updateInterval = 24 * 60 * 60 * 1000;
      definedAliases = [ "!nw" ];
    };
    "Kinopoisk" = {
      urls = [{ template = "https://www.kinopoisk.ru/index.php?kp_query={searchTerms}"; }];
      iconUpdateURL = "https://www.kinopoisk.ru/favicon.ico";
      updateInterval = 24 * 60 * 60 * 1000;
      definedAliases = [ "!ks" ];
    };
    "AnimeGo" = {
      urls = [{ template = "https://animego.org/search/all?q={searchTerms}"; }];
      iconUpdateURL = "https://animego.org/favicon-32x32.png";
      updateInterval = 24 * 60 * 60 * 1000;
      definedAliases = [ "!as" ];
    };
  };
in
{
  programs.firefox = {
    enable = true;
    profiles.Betterfox = {
      isDefault = true;
      inherit extensions extraConfig;
      search = {
        inherit engines;
        default = "Brave";
      };
    };
  };
}