17 lines
297 B
Nix
17 lines
297 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
inherit (lib) mkOption types;
|
|
|
|
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";
|
|
};
|
|
}
|