zaneyos/config/system/kernel/xanmod.nix

7 lines
200 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 == "xanmod") {
boot.kernelPackages = pkgs.linuxPackages_xanmod_latest;
}