mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-05 02:29:40 +01:00
10 lines
208 B
Nix
10 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";
|
|
};
|
|
}
|