zaneyos/config/system/kernel/latest.nix

7 lines
193 B
Nix

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