4.flake-parts/extras/touchup/attr.nix
2026-05-04 12:02:23 +01:00

20 lines
327 B
Nix

{ lib, ... }:
let
inherit (lib)
mkOption
types
;
in
{
imports = [ ./attrs.nix ];
options = {
enable = mkOption {
type = types.bool;
default = true;
description = "Whether to include the attribute in the output.";
};
};
config = {
_module.args.docsVisible = "shallow";
};
}