mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
9 lines
186 B
Nix
9 lines
186 B
Nix
{ name, writeShellApplication, fzf, ... }:
|
|
|
|
writeShellApplication {
|
|
inherit name;
|
|
runtimeInputs = [ fzf ];
|
|
text = ''
|
|
cd "$(git worktree list | fzf | awk '{print $1}')"
|
|
'';
|
|
}
|