nix/module/Dpi.nix

15 lines
169 B
Nix
Raw Normal View History

2024-11-04 04:37:29 +03:00
{
config,
lib,
...
}: let
cfg = config.module.dpi;
in {
options.module.dpi = {
aware = lib.mkOption {
default = false;
type = lib.types.bool;
};
};
}