mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-03 12:03:09 +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;
|
|
}
|