mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
28875192ae
also enables debug feature on kernel
29 lines
573 B
Nix
29 lines
573 B
Nix
{ 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
|
|
];
|
|
};
|
|
|
|
}
|