mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-02-13 06:59:17 +01:00
7 lines
187 B
Nix
7 lines
187 B
Nix
{ config, lib, pkgs, host, ... }:
|
|
|
|
let inherit (import ../../../hosts/${host}/options.nix) theKernel; in
|
|
lib.mkIf (theKernel == "zen") {
|
|
boot.kernelPackages = pkgs.linuxPackages_zen;
|
|
}
|