From 4412cd119de8d122188b082f943e66dc0e238254 Mon Sep 17 00:00:00 2001 From: kenji Date: Sun, 28 Dec 2025 08:18:40 -0600 Subject: [PATCH] bind(firefox): switched bind J and K function --- apps/firefox/home.nix | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/apps/firefox/home.nix b/apps/firefox/home.nix index 94ef8e8..79641fd 100644 --- a/apps/firefox/home.nix +++ b/apps/firefox/home.nix @@ -8,12 +8,23 @@ inputs.textfox.homeManagerModules.default ./textfox.nix ]; - home.packages = with pkgs; [pywalfox-native]; + home.packages = with pkgs; [ + pywalfox-native + tridactyl-native + ]; + + home.file.".config/tridactyl/tridactylrc".text = '' + bind J tabnext + bind K tabprev + ''; programs.firefox = { enable = true; languagePacks = ["en-US"]; - # nativeMessagingHosts = [pkgs.pywalfox-native]; + nativeMessagingHosts = [ + pkgs.pywalfox-native + pkgs.tridactyl-native + ]; profiles = { youtube = import ./profiles/youtube.nix {inherit pkgs myConfig;};