TUXEDO Infinitybook: Enable bluetooth by default

This commit is contained in:
Johannes Arnold
2025-05-13 08:12:08 +02:00
parent 3c5e126732
commit f139290af1

View File

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