Add custom options

This commit is contained in:
fleaz 2022-09-13 10:38:10 +02:00
parent 3660fecc5d
commit 0b817139d3
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083
4 changed files with 14 additions and 2 deletions

8
customOptions.nix Normal file
View file

@ -0,0 +1,8 @@
{lib,...}:{
options.my.highDPI = lib.mkOption {
description = "If the device has a high DPI screen";
default = true;
type = lib.types.bool;
};
}