1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2025-01-27 03:04:59 +01:00
nixos-hardware/microsoft/surface/common/kernel/default.nix

16 lines
252 B
Nix
Raw Normal View History

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