zaneyos/config/system/kernel/latest.nix

7 lines
173 B
Nix
Raw Normal View History

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