nix-config/home/jq.nix

16 lines
236 B
Nix
Raw Normal View History

2021-02-20 14:09:06 +01:00
{ ... }:
{
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";
};
};
}