mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 11:39:19 +00:00
8 lines
215 B
Nix
8 lines
215 B
Nix
{pkgs}: let
|
|
name = "tmux-sessionizer";
|
|
runtimeInputs = [pkgs.tmux pkgs.ghq pkgs.fzf];
|
|
text = builtins.readFile ./tmux-sessionizer.sh;
|
|
in
|
|
pkgs.writeShellApplication {
|
|
inherit name runtimeInputs text;
|
|
}
|