nixos-config/customOptions.nix

15 lines
302 B
Nix
Raw Normal View History

2022-09-13 08:38:10 +00:00
{lib,...}:{
options.my.highDPI = lib.mkOption {
description = "If the device has a high DPI screen";
default = true;
type = lib.types.bool;
};
options.my.includeTLP = lib.mkOption {
description = "If the device should get TLP";
default = true;
type = lib.types.bool;
};
2022-09-13 08:38:10 +00:00
}