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