1
0
Fork 0
dotfiles/home/programs/jq.nix

16 lines
228 B
Nix
Raw Permalink Normal View History

2021-12-06 22:35:29 +00:00
{
programs.jq = {
enable = true;
colors = {
null = "1;32";
false = "1;35";
true = "1;35";
numbers = "0;35";
strings = "0;33";
arrays = "1;37";
objects = "1;37";
};
};
}