mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-02 11:33:07 +01:00
7 lines
173 B
Nix
7 lines
173 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let inherit (import ../../../options.nix) theKernel; in
|
||
|
lib.mkIf (theKernel == "latest") {
|
||
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||
|
}
|