15 lines
169 B
Nix
15 lines
169 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}: let
|
||
|
cfg = config.module.dpi;
|
||
|
in {
|
||
|
options.module.dpi = {
|
||
|
aware = lib.mkOption {
|
||
|
default = false;
|
||
|
type = lib.types.bool;
|
||
|
};
|
||
|
};
|
||
|
}
|