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

19 lines
311 B
Nix
Raw Normal View History

2022-12-31 05:52:38 -05:00
{ lib, ... }:
2022-11-28 02:23:51 -05:00
let
inherit (lib) mkOption types;
2022-11-28 02:23:51 -05:00
in {
imports = [
./linux-5.19.17
2023-01-09 05:05:15 -05:00
./linux-6.0.17
./linux-6.1.18
2023-09-17 08:19:30 -04:00
./linux-6.4.16
];
2022-12-04 23:39:24 -05:00
options.microsoft-surface.kernelVersion = mkOption {
description = "Kernel Version to use (patched for MS Surface)";
2022-12-04 23:39:24 -05:00
type = types.enum [ ];
};
}