home: add jq

This commit is contained in:
Bruno BELANYI 2021-02-20 13:09:06 +00:00
parent 631292faf2
commit 8b1d825aa4
2 changed files with 16 additions and 0 deletions

View file

@ -4,6 +4,7 @@
./direnv.nix
./documentation.nix
./git
./jq.nix
./zsh
];
}

15
home/jq.nix Normal file
View file

@ -0,0 +1,15 @@
{ ... }:
{
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";
};
};
}