9 lines
160 B
Nix
9 lines
160 B
Nix
|
{lib,...}:{
|
||
|
|
||
|
options.my.highDPI = lib.mkOption {
|
||
|
description = "If the device has a high DPI screen";
|
||
|
default = true;
|
||
|
type = lib.types.bool;
|
||
|
};
|
||
|
}
|