zaneyos/config/system/kernel/testing.nix
2024-02-10 17:46:32 +01:00

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;
}