mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-05 01:37:24 +08:00
13 lines
277 B
Nix
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;
|
|
};
|
|
}
|