sysprof: 1.2.0 -> 3.28.1

This commit is contained in:
Andreas Rammhold
2018-05-16 16:54:12 +02:00
committed by Jan Tojnar
parent b04e939a13
commit 8a93595550
5 changed files with 64 additions and 32 deletions
+19
View File
@@ -0,0 +1,19 @@
{ config, lib, pkgs, ... }:
{
options = {
services.sysprof = {
enable = lib.mkEnableOption "sysprof profiling daemon";
};
};
config = lib.mkIf config.services.sysprof.enable {
environment.systemPackages = [ pkgs.sysprof ];
services.dbus.packages = [ pkgs.sysprof ];
systemd.packages = [ pkgs.sysprof ];
};
meta.maintainers = pkgs.sysprof.meta.maintainers;
}