16 lines
228 B
Nix
16 lines
228 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}: let
|
||
|
cfg = config.marleyos.programs.jq;
|
||
|
in {
|
||
|
options.marleyos.programs.jq.enable = lib.mkEnableOption "jq";
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
programs.jq = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|