about summary refs log tree commit diff
path: root/users/fcuny/cli/tools.nix
blob: bd38c7243eab708da4addd26d91c07b212482f29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, config, lib, ...}:

{
  environment.systemPackages = with pkgs; [
    # use the correct version of `perf` for the configured `linuxPackages`
    linuxpkgs.perf
    perf-tools
    flameGraph
  ];
  # this uses  correct `linuxPackages` for `bcc`
  programs.bcc.enable = true;
}