This commit is contained in:
Madeleine Sydney
2025-03-23 23:16:03 -06:00
parent c3c1359b4f
commit ef9943b707
22 changed files with 300 additions and 106 deletions

View File

@@ -100,7 +100,22 @@ in {
};
profiles."msyds" = {
bookmarks = [];
bookmarks = {
force = true;
settings = [
{
name = "Nix";
toolbar = true;
bookmarks = [
{
name = "Home-manager options";
tags = [ "nix" "docs" ];
url = "https://nix-community.github.io/home-manager/options.xhtml";
}
];
}
];
};
# Check about:support for extension/add-on ID strings.
extensions = {
@@ -186,9 +201,9 @@ in {
# Override non-declared settings.
force = true;
# Precedence of search engines.
order = [ "Kagi" "DuckDuckGo" ];
order = [ "Kagi" "ddg" ];
default = "Kagi";
privateDefault = "DuckDuckGo";
privateDefault = "ddg";
engines = {
"Kagi" = {
urls = [{
@@ -198,6 +213,18 @@ in {
];
}];
};
"Nixopts" = {
urls = [{
template = "https://search.nixos.org/options";
params = [
{ name = "channel"; value = "unstable"; }
{ name = "query"; value = "{searchTerms}"; }
];
}];
icon =
"${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
definedAliases = [ "!no" ];
};
"Nixpkgs" = {
urls = [{
template = "https://search.nixos.org/packages";