feat(kernel): add jhovold_6_7 variant

This commit is contained in:
steveej 2024-02-25 11:30:25 +01:00
parent adf1dd9e91
commit 4a423f366d
3 changed files with 21 additions and 0 deletions

View file

@ -17,6 +17,8 @@ let
pkgs.linuxPackagesFor (
if cfg.kernel == "jhovold" then
x13sPackages.linux_jhovold
else if cfg.kernel == "jhovold_6_7" then
x13sPackages.linux_jhovold_6_7
else if cfg.kernel == "steev" then
x13sPackages.linux_steev
else
@ -38,6 +40,7 @@ in
kernel = lib.mkOption {
type = lib.types.enum [
"jhovold"
"jhovold_6_7"
"mainline"
"steev"
];