It is going to be merged into nixpkgs, under `nixos/hardware`. This will give better discoverability, and considering the low turnover (less than 100 commits in the last year and only 350 total) it won’t make any dent on the size of nixpkgs. We have a monorepo, let’s use it.
17 lines
308 B
Nix
17 lines
308 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
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'"
|
|
];
|
|
};
|
|
}
|