Files
nixos-hardware/tuxedo/infinitybook/default.nix
2025-03-07 05:24:51 +00:00

13 lines
277 B
Nix

{ 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;
};
}