diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-13 11:09:40 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-13 11:09:40 -0800 |
commit | 657ed3de6b8d250b2d2978098a7990ff31ee0770 (patch) | |
tree | ca318b5dded4c5fb8c41cca3f41d5dc981285560 /users | |
parent | home-manager: fix package name (diff) | |
download | world-657ed3de6b8d250b2d2978098a7990ff31ee0770.tar.gz |
hosts: install linux perf tools for the host
Diffstat (limited to 'users')
-rw-r--r-- | users/fcuny/cli/default.nix | 1 | ||||
-rw-r--r-- | users/fcuny/cli/tools.nix | 12 |
2 files changed, 0 insertions, 13 deletions
diff --git a/users/fcuny/cli/default.nix b/users/fcuny/cli/default.nix index 5259014..3599ac9 100644 --- a/users/fcuny/cli/default.nix +++ b/users/fcuny/cli/default.nix @@ -6,7 +6,6 @@ ./go.nix ./tmux.nix ./zsh.nix - ./tools.nix ]; home.packages = [ diff --git a/users/fcuny/cli/tools.nix b/users/fcuny/cli/tools.nix deleted file mode 100644 index bd38c72..0000000 --- a/users/fcuny/cli/tools.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ 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; -} |