zaneyos/config/system/kernel/default.nix

7 lines
187 B
Nix

{ config, lib, pkgs, host, ... }:
let inherit (import ../../../hosts/${host}/options.nix) theKernel; in
lib.mkIf (theKernel == "default") {
boot.kernelPackages = pkgs.linuxPackages;
}