zaneyos/config/system/kernel/zen.nix

7 lines
187 B
Nix
Raw Normal View History

{ config, lib, pkgs, host, ... }:
2024-02-10 17:46:32 +01:00
let inherit (import ../../../hosts/${host}/options.nix) theKernel; in
2024-02-10 17:46:32 +01:00
lib.mkIf (theKernel == "zen") {
boot.kernelPackages = pkgs.linuxPackages_zen;
}