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
]; ];
hardware =
lib.mkDefault {
bluetooth.enable = true;
}
# Enable TUXEDO's kernel drivers if they are available # Enable TUXEDO's kernel drivers if they are available
hardware = lib.optionalAttrs (options.hardware ? tuxedo-drivers) { // lib.optionalAttrs (options.hardware ? tuxedo-drivers) {
tuxedo-drivers.enable = lib.mkDefault true; tuxedo-drivers.enable = true;
}; };
} }