mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
18 lines
311 B
Nix
18 lines
311 B
Nix
{ lib, ... }:
|
|
|
|
let
|
|
inherit (lib) mkOption types;
|
|
|
|
in {
|
|
imports = [
|
|
./linux-5.19.17
|
|
./linux-6.0.17
|
|
./linux-6.1.53
|
|
./linux-6.4.16
|
|
];
|
|
|
|
options.microsoft-surface.kernelVersion = mkOption {
|
|
description = "Kernel Version to use (patched for MS Surface)";
|
|
type = types.enum [ ];
|
|
};
|
|
}
|