trivionomicon: thinkpad: move thinkpad config into laptop module

This commit is contained in:
Fabian Montero 2025-09-15 12:52:50 -06:00
parent c54f9c4207
commit acada9b054
Signed by: fabian
GPG key ID: 3EDA9AE3937CCDE3
6 changed files with 49 additions and 41 deletions

View file

@ -0,0 +1,10 @@
{lib, ...}:
with lib.types; {
sys = {
thinkpad = lib.mkOption {
type = boolean;
default = false;
description = "set to true if your laptop is a thinkpad";
};
};
}