nix-config/modules/home/jq/default.nix
Bruno BELANYI 65a8f7c481 home: create 'modules/home' folder
Consolidating all modules under the same path, to clear out the
top-level directory.
2023-11-11 18:12:05 +00:00

23 lines
403 B
Nix

{ config, lib, ... }:
let
cfg = config.my.home.jq;
in
{
options.my.home.jq = with lib; {
enable = my.mkDisableOption "jq configuration";
};
config.programs.jq = lib.mkIf cfg.enable {
enable = true;
colors = {
null = "1;30";
false = "0;37";
true = "0;37";
numbers = "0;37";
strings = "0;32";
arrays = "1;39";
objects = "1;39";
};
};
}