mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-04 12:33:09 +01:00
7 lines
180 B
Nix
7 lines
180 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let inherit (import ../../../options.nix) theKernel; in
|
||
|
lib.mkIf (theKernel == "xanmod") {
|
||
|
boot.kernelPackages = pkgs.linuxPackages_xanmod_latest;
|
||
|
}
|