home: add jq
This commit is contained in:
parent
631292faf2
commit
8b1d825aa4
|
@ -4,6 +4,7 @@
|
||||||
./direnv.nix
|
./direnv.nix
|
||||||
./documentation.nix
|
./documentation.nix
|
||||||
./git
|
./git
|
||||||
|
./jq.nix
|
||||||
./zsh
|
./zsh
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
15
home/jq.nix
Normal file
15
home/jq.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue