mirror of
https://github.com/nix-community/home-manager
synced 2024-11-27 05:29:46 +01:00
jq: add package
option
This commit is contained in:
parent
d2aaeac42c
commit
0e329cee4c
1 changed files with 8 additions and 1 deletions
|
@ -30,6 +30,13 @@ in {
|
|||
programs.jq = {
|
||||
enable = mkEnableOption "the jq command-line JSON processor";
|
||||
|
||||
package = mkOption {
|
||||
type = types.package;
|
||||
default = pkgs.jq;
|
||||
defaultText = literalExample "pkgs.jq";
|
||||
description = "jq package to use.";
|
||||
};
|
||||
|
||||
colors = mkOption {
|
||||
description = ''
|
||||
The colors used in colored JSON output.</para>
|
||||
|
@ -65,7 +72,7 @@ in {
|
|||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = [ pkgs.jq ];
|
||||
home.packages = [ cfg.package ];
|
||||
|
||||
home.sessionVariables = let c = cfg.colors;
|
||||
in {
|
||||
|
|
Loading…
Reference in a new issue