We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d237195 commit 782da03Copy full SHA for 782da03
modules/development/debug-tools.nix
@@ -72,9 +72,11 @@ in
72
]
73
++ rmDesktopEntries [ pkgs.htop ]
74
#TODO tmp disable perf as it is broken in cross-compiled Orin AGX/NX
75
- ++ lib.optional (
76
- config.nixpkgs.hostPlatform.system != "aarch64-linux"
77
- ) config.boot.kernelPackages.perf
+ ++ lib.optional (config.nixpkgs.hostPlatform.system != "aarch64-linux") [
+ config.boot.kernelPackages.perf
+ pkgs.kitty.terminfo
78
+ pkgs.ghostty.terminfo
79
+ ]
80
# LuaJIT (which is sysbench dependency) not available on RISC-V
81
# ydotool and grim are tools for automated GUI-testing, useless on riscv
82
++ lib.optionals (config.nixpkgs.hostPlatform.system != "riscv64-linux") [
0 commit comments