mirror of
https://github.com/callumio/nixfiles.git
synced 2026-08-06 20:49:17 +01:00
13 lines
227 B
Nix
13 lines
227 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;
|
|
}
|