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