Add support for TUXEDO InfinityBook Pro Intel Gen9

This commit is contained in:
Johannes Karl Arnold
2025-02-23 10:56:31 +01:00
committed by mergify[bot]
parent 71ab5581a0
commit ae546d018a
6 changed files with 22 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
{ lib, options, ... }:
{
imports = [
../../common/pc/laptop
../../common/pc/ssd
];
# Enable TUXEDO's kernel drivers if they are available
hardware = lib.optionalAttrs (options.hardware ? tuxedo-drivers) {
tuxedo-drivers.enable = lib.mkDefault true;
};
}