summary refs log tree commit diff
path: root/modules/software-templates/profilers.nix
blob: 99090dac65c2ec1fa736cb7b7548117be90abdc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  config,
  lib,
  pkgs,
  home-manager,
  ...
}:

{
  environment.systemPackages = with pkgs; [
    kcachegrind
    linuxKernel.packages.linux_5_15.perf
    hotspot
    valgrind
  ];
}