mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-15 23:49:41 +01:00
16 lines
264 B
Nix
16 lines
264 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
../.
|
||
|
../../../common/cpu/intel
|
||
|
];
|
||
|
|
||
|
boot = {
|
||
|
kernelParams = [
|
||
|
# fixes brightness keys, see https://wiki.archlinux.org/index.php/Lenovo_ThinkPad_T430s
|
||
|
"acpi_osi\='!Windows 2012'"
|
||
|
];
|
||
|
};
|
||
|
}
|