nixos-hardware/microsoft/surface/common/kernel/default.nix

17 lines
270 B
Nix
Raw Normal View History

2022-12-31 10:52:38 +00:00
{ lib, ... }:
2022-11-28 07:23:51 +00:00
let
inherit (lib) mkOption types;
2022-11-28 07:23:51 +00:00
in {
imports = [
2023-11-12 10:23:14 +00:00
./linux-6.1.x
2023-11-12 10:23:50 +00:00
./linux-6.5.x
];
2022-12-05 04:39:24 +00:00
options.microsoft-surface.kernelVersion = mkOption {
description = "Kernel Version to use (patched for MS Surface)";
2022-12-05 04:39:24 +00:00
type = types.enum [ ];
};
}