Skip to content

Commit

Permalink
fix: upgrade zellij to 0.41.2 to fix keybinding
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan4yin committed Nov 29, 2024
1 parent f0576ec commit 6fc0c5b
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions home/base/tui/zellij/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,11 @@
{
pkgs,
pkgs-stable,
...
}: let
{pkgs, ...}: let
shellAliases = {
"zj" = "zellij";
};
in {
programs.zellij = {
enable = true;
# [Linux] Revert to old v0.40.1 to fix:
# https://github.com/zellij-org/zellij/issues/3592
package =
if pkgs.stdenv.isLinux
then pkgs-stable.zellij
else pkgs.zellij;
package = pkgs.zellij;
};
# auto start zellij in nushell
programs.nushell.extraConfig = ''
Expand Down

0 comments on commit 6fc0c5b

Please sign in to comment.