2022-09-13 08:38:10 +00:00
|
|
|
{lib,...}:{
|
|
|
|
|
2024-04-04 19:22:58 +00:00
|
|
|
options.my = {
|
|
|
|
highDPI = lib.mkOption {
|
|
|
|
description = "If the device has a high DPI screen";
|
|
|
|
default = true;
|
|
|
|
type = lib.types.bool;
|
|
|
|
};
|
|
|
|
|
|
|
|
includeTLP = lib.mkOption {
|
|
|
|
description = "If the device should get TLP";
|
|
|
|
default = true;
|
|
|
|
type = lib.types.bool;
|
|
|
|
};
|
2023-12-01 15:44:14 +00:00
|
|
|
|
2024-04-04 19:22:58 +00:00
|
|
|
isLaptop = lib.mkOption {
|
|
|
|
description = "If the device is a laptop";
|
|
|
|
default = false;
|
|
|
|
type = lib.types.bool;
|
|
|
|
};
|
2023-12-01 15:44:14 +00:00
|
|
|
};
|
2022-09-13 08:38:10 +00:00
|
|
|
}
|