2022-12-31 05:52:38 -05:00
|
|
|
{ lib, ... }:
|
2021-01-23 01:36:37 -05:00
|
|
|
|
2022-11-28 02:23:51 -05:00
|
|
|
let
|
2022-12-04 23:32:25 -05:00
|
|
|
inherit (lib) mkOption types;
|
2022-12-04 19:41:07 -05:00
|
|
|
|
2022-11-28 02:23:51 -05:00
|
|
|
in {
|
2022-12-04 23:32:25 -05:00
|
|
|
imports = [
|
2024-06-10 16:24:42 -04:00
|
|
|
./linux-6.9.x
|
2022-12-04 23:32:25 -05:00
|
|
|
];
|
|
|
|
|
2022-12-04 23:39:24 -05:00
|
|
|
options.microsoft-surface.kernelVersion = mkOption {
|
2022-12-04 23:32:25 -05:00
|
|
|
description = "Kernel Version to use (patched for MS Surface)";
|
2022-12-04 23:39:24 -05:00
|
|
|
type = types.enum [ ];
|
2022-12-04 23:32:25 -05:00
|
|
|
};
|
2021-01-23 01:36:37 -05:00
|
|
|
}
|