2022-09-13 10:38:10 +02:00
|
|
|
{lib,...}:{
|
|
|
|
|
2024-04-04 21:22:58 +02: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 16:44:14 +01:00
|
|
|
|
2024-04-04 21:22:58 +02:00
|
|
|
isLaptop = lib.mkOption {
|
|
|
|
description = "If the device is a laptop";
|
|
|
|
default = false;
|
|
|
|
type = lib.types.bool;
|
|
|
|
};
|
2023-12-01 16:44:14 +01:00
|
|
|
};
|
2022-09-13 10:38:10 +02:00
|
|
|
}
|