1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-27 23:18:31 +02:00
nixos-hardware/microsoft/surface/common/kernel/default.nix
2023-10-06 11:16:50 +00:00

17 lines
271 B
Nix

{ lib, ... }:
let
inherit (lib) mkOption types;
in {
imports = [
./linux-6.1.55
./linux-6.5.5
];
options.microsoft-surface.kernelVersion = mkOption {
description = "Kernel Version to use (patched for MS Surface)";
type = types.enum [ ];
};
}