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

17 lines
273 B
Nix
Raw Normal View History

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