11 lines
146 B
Nix
11 lines
146 B
Nix
|
# Screen density configuration.
|
||
|
{
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
options.module.dpi.aware = lib.mkOption {
|
||
|
default = false;
|
||
|
type = lib.types.bool;
|
||
|
};
|
||
|
}
|