nix-config/home/jq.nix
2021-03-03 17:02:48 +00:00

16 lines
236 B
Nix

{ ... }:
{
programs.jq = {
enable = true;
colors = {
null = "1;30";
false = "0;37";
true = "0;37";
numbers = "0;37";
strings = "0;32";
arrays = "1;39";
objects = "1;39";
};
};
}