2022-11-28 04:26:47 -05:00
|
|
|
{ config, lib, pkgs, ... }:
|
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-11-28 02:23:51 -05:00
|
|
|
|
|
|
|
in {
|
2022-12-04 23:32:25 -05:00
|
|
|
imports = [
|
|
|
|
./linux-5.19.17
|
|
|
|
];
|
|
|
|
|
|
|
|
options.microsoft-surface.kernel-version = mkOption {
|
|
|
|
description = "Kernel Version to use (patched for MS Surface)";
|
|
|
|
type = types.enum [ ];
|
|
|
|
# default = "5.19.17";
|
|
|
|
};
|
2021-01-23 01:36:37 -05:00
|
|
|
}
|