mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
44b6a1509d
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 ];
|
|
};
|
|
}
|