mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-05 10:39:42 +01:00
11 lines
208 B
Nix
11 lines
208 B
Nix
|
{ lib, ... }:
|
||
|
with lib;
|
||
|
{
|
||
|
imports = singleton ../lib/kernerl-version.nix;
|
||
|
|
||
|
kernelAtleast = singleton
|
||
|
{ version = "3.18";
|
||
|
msg = "Cypress APA touchpad supported added in Linux-3.17-rc1";
|
||
|
};
|
||
|
}
|