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
No known key found for this signature in database
GPG key ID: 91192A6AA8C42BFA

View file

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