Skip to content

Commit

Permalink
zsh/plugins: get quitcd from package directly
Browse files Browse the repository at this point in the history
This removes the need to download nnn's source, saving us a few seconds.

I also don't need to periodically bump that fetcher hash, since it
happens every time nixpkgs gets bumped.
  • Loading branch information
tomodachi94 committed May 20, 2024
1 parent ce1f45a commit 0298763
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions home/common/zsh/plugins.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,8 @@
}
{
name = "nnn-quitcd";
file = "misc/quitcd/quitcd.bash_sh_zsh";
src = pkgs.fetchFromGitHub {
owner = "jarun";
repo = "nnn";
rev = "efd5bc9db100d0489cfb3d982a69b04dacaff852";
sha256 = "sha256-A0XxC8/DNb2GuIxPVUiWNsfaq+UysVRYHG8fl/Iyaaw=";
};
file = "share/quitcd/quitcd.bash_sh_zsh";
src = pkgs.nnn;
}
{
name = "craftos-select";
Expand Down

0 comments on commit 0298763

Please sign in to comment.