mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
14 lines
280 B
Nix
14 lines
280 B
Nix
{
|
|
imports = [
|
|
../.
|
|
../../../common/cpu/intel
|
|
../../../common/pc/laptop/acpi_call.nix
|
|
];
|
|
|
|
boot = {
|
|
kernelParams = [
|
|
# fixes brightness keys, see https://wiki.archlinux.org/index.php/Lenovo_ThinkPad_T430s
|
|
''acpi_osi="!Windows 2012"''
|
|
];
|
|
};
|
|
}
|