2018-08-31 14:16:13 -04:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../.
|
|
|
|
../../../common/cpu/intel
|
2019-05-04 14:04:05 -04:00
|
|
|
../../../common/pc/laptop/acpi_call.nix
|
2018-08-31 14:16:13 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
boot = {
|
|
|
|
kernelParams = [
|
|
|
|
# fixes brightness keys, see https://wiki.archlinux.org/index.php/Lenovo_ThinkPad_T430s
|
2021-10-26 21:50:38 -04:00
|
|
|
''acpi_osi="!Windows 2012"''
|
2018-08-31 14:16:13 -04:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|