nix/option/Tablet.nix

10 lines
188 B
Nix
Raw Normal View History

{ lib, config, ... }:
let
purpose = config.module.purpose;
in
2024-11-16 04:43:59 +03:00
{
options.module.tablet.enable = lib.mkEnableOption "the support for tables." // {
default = purpose.creative;
};
2024-11-16 04:43:59 +03:00
}