10 lines
193 B
Nix
10 lines
193 B
Nix
{lib, ...}:
|
|
with lib.types; {
|
|
sys = {
|
|
thinkpad = lib.mkOption {
|
|
type = boolean;
|
|
default = false;
|
|
description = "set to true if your laptop is a thinkpad";
|
|
};
|
|
};
|
|
}
|