From 353ea2a57beabb9487e38b8d3f997af47d810d43 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Mon, 8 Jul 2024 16:25:41 +0200 Subject: [PATCH] feat: add `perf` & `pwru` Signed-off-by: Raito Bezarius --- modules/packages.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/packages.nix b/modules/packages.nix index 1aecc12..96e4cc3 100644 --- a/modules/packages.nix +++ b/modules/packages.nix @@ -1,4 +1,4 @@ -{ pkgs, inputs, ... }: { +{ pkgs, config, inputs, ... }: { # this extends the list from: # https://github.com/numtide/srvos/blob/master/server.nix#L10 environment.systemPackages = with pkgs; [ @@ -34,6 +34,9 @@ ethtool usbutils + config.boot.kernelPackages.perf + pwru + ipmitool # tries to default to soft-float due to out-dated cc-rs ] ++ lib.optional (!stdenv.hostPlatform.isRiscV) bandwhich;