bind(firefox): switched bind J and K function

This commit is contained in:
kenji
2025-12-28 08:18:40 -06:00
parent 1db6f4dddd
commit 4412cd119d
+13 -2
View File
@@ -8,12 +8,23 @@
inputs.textfox.homeManagerModules.default inputs.textfox.homeManagerModules.default
./textfox.nix ./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 = { programs.firefox = {
enable = true; enable = true;
languagePacks = ["en-US"]; languagePacks = ["en-US"];
# nativeMessagingHosts = [pkgs.pywalfox-native]; nativeMessagingHosts = [
pkgs.pywalfox-native
pkgs.tridactyl-native
];
profiles = { profiles = {
youtube = import ./profiles/youtube.nix {inherit pkgs myConfig;}; youtube = import ./profiles/youtube.nix {inherit pkgs myConfig;};