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

17 lines
297 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
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
];
options.microsoft-surface.kernel-version = mkOption {
description = "Kernel Version to use (patched for MS Surface)";
type = types.enum [ ];
# default = "5.19.17";
};
}