Skip to content

Commit

Permalink
feat(zellij): use my branch for stacked panes move bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyxels committed Nov 21, 2024
1 parent 4dedd5c commit 301810c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions home/zellij/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,21 @@
source = ./gruvbox_with_selection.kdl;
};
};

nixpkgs.overlays = [
(final: prev: {
zellij = prev.zellij.overrideAttrs (oldAttrs: rec {
src = final.fetchFromGitHub {
owner = "pyxels";
repo = "zellij";
rev = "31b82cb8667a1300c11083ca39fe0289e66a5163";
sha256 = "sha256-h2V2Po/4Qq61Xc60n1IBJmQFiEla04Qy0U79MstUGOQ=";
};
cargoDeps = oldAttrs.cargoDeps.overrideAttrs {
inherit src;
outputHash = "sha256-P/ncCDQcYfvQIx5HGNOMV8fNxfVcfWfCMQjlhiiCZcc=";
};
});
})
];
}

0 comments on commit 301810c

Please sign in to comment.