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