programs.systemtap: add nixos option for installing systemtap

also enables debug feature on kernel
wip/yesman
Herwig Hochleitner 6 years ago committed by Herwig Hochleitner
parent 3027b80f1d
commit 28875192ae
  1. 1
      nixos/modules/module-list.nix
  2. 28
      nixos/modules/programs/systemtap.nix

@ -104,6 +104,7 @@
./programs/ssh.nix
./programs/ssmtp.nix
./programs/sysdig.nix
./programs/systemtap.nix
./programs/sway.nix
./programs/thefuck.nix
./programs/tmux.nix

@ -0,0 +1,28 @@
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.programs.systemtap;
in {
options = {
programs.systemtap = {
enable = mkOption {
default = false;
description = ''
Install <command>systemtap</command> along with necessary kernel options.
'';
};
};
};
config = mkIf cfg.enable {
system.requiredKernelConfig = with config.lib.kernelConfig; [
(isYes "DEBUG")
];
boot.kernel.features.debug = true;
environment.systemPackages = [
config.boot.kernelPackages.systemtap
];
};
}
Loading…
Cancel
Save