2022-12-31 11:52:38 +01:00
|
|
|
{ lib, ... }:
|
2021-01-23 19:36:37 +13:00
|
|
|
|
2022-11-28 20:23:51 +13:00
|
|
|
let
|
2022-12-05 17:32:25 +13:00
|
|
|
inherit (lib) mkOption types;
|
2022-12-05 13:41:07 +13:00
|
|
|
|
2022-11-28 20:23:51 +13:00
|
|
|
in {
|
2022-12-05 17:32:25 +13:00
|
|
|
imports = [
|
|
|
|
./linux-5.19.17
|
2023-01-09 23:05:15 +13:00
|
|
|
./linux-6.0.17
|
2023-03-26 20:20:39 +02:00
|
|
|
./linux-6.1.18
|
2023-09-04 16:07:13 +02:00
|
|
|
./linux-6.4.14
|
2022-12-05 17:32:25 +13:00
|
|
|
];
|
|
|
|
|
2022-12-05 17:39:24 +13:00
|
|
|
options.microsoft-surface.kernelVersion = mkOption {
|
2022-12-05 17:32:25 +13:00
|
|
|
description = "Kernel Version to use (patched for MS Surface)";
|
2022-12-05 17:39:24 +13:00
|
|
|
type = types.enum [ ];
|
2022-12-05 17:32:25 +13:00
|
|
|
};
|
2021-01-23 19:36:37 +13:00
|
|
|
}
|