Merge remote-tracking branch 'upstream/master' into microsoft/surface/6.1.3

This commit is contained in:
mexisme
2023-01-11 11:57:13 +13:00
23 changed files with 255 additions and 57 deletions

View File

@@ -0,0 +1,17 @@
{ lib, ... }:
let
inherit (lib) mkOption types;
in {
imports = [
./linux-5.19.17
./linux-6.0.17
./linux-6.1.3
];
options.microsoft-surface.kernelVersion = mkOption {
description = "Kernel Version to use (patched for MS Surface)";
type = types.enum [ ];
};
}