nixos-config/customOptions.nix

9 lines
160 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;
};
}