Looks trival, but it is easy to make the mistake to add linuxPackages.bcc to systemPackages, which breaks if the not the default kernel is used.
		
			
				
	
	
		
			10 lines
		
	
	
		
			281 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			281 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, ... }:
 | 
						|
{
 | 
						|
  options.programs.bcc.enable = lib.mkEnableOption "bcc";
 | 
						|
 | 
						|
  config = lib.mkIf config.programs.bcc.enable {
 | 
						|
    environment.systemPackages = [ config.boot.kernelPackages.bcc ];
 | 
						|
    boot.extraModulePackages = [ config.boot.kernelPackages.bcc ];
 | 
						|
  };
 | 
						|
}
 |