Files
2025-05-16 16:01:30 +02:00

17 lines
333 B
Nix

{ lib, options, ... }:
{
imports = [
../../common/pc/laptop
../../common/pc/ssd
];
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;
};
}