this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(core/kernel): remove dropped kernel

see NixOS/nixpkgs#499218

+1 -3
+1 -3
modules/core/kernel.nix
··· 7 7 cfg = config.cfg.core.kernel; 8 8 in { 9 9 options.cfg.core.kernel.type = lib.mkOption { 10 - type = lib.types.enum ["latest" "lts" "zen" "xanmod" "lqx"]; 10 + type = lib.types.enum ["latest" "lts" "zen" "xanmod"]; 11 11 default = "latest"; 12 12 description = "Set the Linux kenel type to use."; 13 13 }; ··· 22 22 then pkgs.linuxKernel.packages.linux_zen 23 23 else if cfg.type == "xanmod" 24 24 then pkgs.linuxKernel.packages.linux_xanmod_latest 25 - else if cfg.type == "lqx" 26 - then pkgs.linuxKernel.packages.linux_lqx 27 25 else throw "Unknown kernel type."; 28 26 kernel.sysctl."kernel.panic" = 5; 29 27 };