mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-04 04:23:12 +01:00
10 lines
301 B
Nix
10 lines
301 B
Nix
|
# For the adventurous people
|
||
|
# It's not listed in the list of possible options,
|
||
|
# but the ones who want to try it can do so.
|
||
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let inherit (import ../../../options.nix) theKernel; in
|
||
|
lib.mkIf (theKernel == "testing") {
|
||
|
boot.kernelPackages = pkgs.linuxPackages_testing;
|
||
|
}
|