firefox: Nix options search and fix chrome persist
This commit is contained in:
parent
edef6fdd84
commit
ea96e9d24c
2 changed files with 18 additions and 5 deletions
|
@ -134,8 +134,9 @@
|
|||
profiles.shaga = {
|
||||
isDefault = true;
|
||||
search = {
|
||||
force = true;
|
||||
default = "Gruble";
|
||||
order = [ "Gruble" "Nix Packages" "Home-manager options" ];
|
||||
order = [ "Gruble" "Nix Packages" "Nix Options" "Home-manager options" ];
|
||||
engines = {
|
||||
"Gruble" = {
|
||||
urls = [
|
||||
|
@ -155,6 +156,7 @@
|
|||
template = "https://search.nixos.org/packages";
|
||||
params = [
|
||||
{ name = "type"; value = "packages"; }
|
||||
{ name = "channel"; value = "unstable"; }
|
||||
{ name = "query"; value = "{searchTerms}"; }
|
||||
];
|
||||
}];
|
||||
|
@ -162,6 +164,19 @@
|
|||
updateInterval = 7 * 24 * 60 * 60 * 1000; # Weekly
|
||||
definedAliases = [ "@np" ];
|
||||
};
|
||||
"Nix Options" = {
|
||||
urls = [{
|
||||
template = "https://search.nixos.org/options";
|
||||
params = [
|
||||
{ name = "type"; value = "packages"; }
|
||||
{ name = "channel"; value = "unstable"; }
|
||||
{ name = "query"; value = "{searchTerms}"; }
|
||||
];
|
||||
}];
|
||||
iconUpdateURL = "https://nixos.org/favicon.png";
|
||||
updateInterval = 7 * 24 * 60 * 60 * 1000; # Weekly
|
||||
definedAliases = [ "@no" ];
|
||||
};
|
||||
"Home-manager options" = {
|
||||
urls = [{
|
||||
template = "https://home-manager-options.extranix.com";
|
||||
|
@ -175,14 +190,13 @@
|
|||
definedAliases = [ "@ho" ];
|
||||
};
|
||||
};
|
||||
force = true;
|
||||
};
|
||||
|
||||
extensions = with config.nur.repos.rycee.firefox-addons; [
|
||||
ublock-origin
|
||||
image-search-options
|
||||
bitwarden
|
||||
skip-redirect
|
||||
translate-web-pages
|
||||
];
|
||||
|
||||
settings = {
|
||||
|
@ -329,7 +343,6 @@
|
|||
"userChrome.theme.system_default" = true;
|
||||
"userChrome.theme.proton_color" = true;
|
||||
"userChrome.theme.proton_chrome" = true;
|
||||
|
||||
"userChrome.theme.fully_color" = true;
|
||||
"userChrome.theme.fully_dark" = true;
|
||||
"userChrome.decoration.cursor" = true;
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
{ directory = ".local/share/keyrings"; mode = "0700"; }
|
||||
".local/share/direnv"
|
||||
".mozilla/firefox/shaga/bookmarkbackups"
|
||||
".mozillla/firefox/shaga/chrome"
|
||||
".mozilla/firefox/shaga/chrome"
|
||||
".config/Signal"
|
||||
".config/vesktop"
|
||||
".config/tutanota-desktop"
|
||||
|
|
Loading…
Reference in a new issue