Remove unneeded perf package from eudy

It is already included in the base list of packages, which is now only
"perf" and doesn't depend on the kernel version.
This commit is contained in:
2026-01-08 15:56:56 +01:00
parent e47ab878a0
commit ebba91d48b

View File

@@ -1,11 +1,6 @@
{ config, pkgs, lib, ... }:
{ pkgs, lib, ... }:
{
# add the perf tool
environment.systemPackages = with pkgs; [
config.boot.kernelPackages.perf
];
# allow non-root users to read tracing data from the kernel
boot.kernel.sysctl."kernel.perf_event_paranoid" = -2;
boot.kernel.sysctl."kernel.kptr_restrict" = 0;