1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-03-16 14:27:06 +00:00

11 lines
150 B
Nix
Raw Normal View History

2025-01-30 14:48:17 -05:00
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "jqr";
runtimeInputs = [
pkgs.jq
pkgs.fzf
];
text = builtins.readFile ./jqr.sh;
}