From 4e13e8c631a50e9447ef9984677dbbd9e799d96b Mon Sep 17 00:00:00 2001 From: Philipp Date: Mon, 2 Jun 2025 17:04:12 +0200 Subject: [PATCH] fix(librewolf): fix search engine shortcuts not working We made a little typo, and broke everything. Sadly url seems to be a valid option, it had to be urls instead mightly confusing to be honest. --- modules/home/apps/librewolf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/home/apps/librewolf/default.nix b/modules/home/apps/librewolf/default.nix index 2b0aca1..175180c 100644 --- a/modules/home/apps/librewolf/default.nix +++ b/modules/home/apps/librewolf/default.nix @@ -55,14 +55,14 @@ let }; "NixOS Packages" = { - url = [ { template = "https://search.nixos.org/packages?query={searchTerms}"; } ]; + urls = [ { template = "https://search.nixos.org/packages?query={searchTerms}"; } ]; icon = "https://wiki.nixos.org/favicon.ico"; updateInterval = 24 * 60 * 60 * 1000; definedAliases = [ "@np" ]; }; "NixOS Options" = { - url = [ { template = "https://search.nixos.org/options?query={searchTerms}"; } ]; + urls = [ { template = "https://search.nixos.org/options?query={searchTerms}"; } ]; icon = "https://wiki.nixos.org/favicon.ico"; updateInterval = 24 * 60 * 60 * 1000; definedAliases = [ "@no" ];