2013-05-23 11:04:07 +00:00
|
|
|
# Global configuration for atop.
|
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2013-05-23 11:04:07 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2013-05-23 11:04:07 +00:00
|
|
|
|
|
|
|
let cfg = config.programs.atop;
|
|
|
|
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
programs.atop = {
|
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = types.attrs;
|
|
|
|
default = {};
|
|
|
|
example = {
|
|
|
|
flags = "a1f";
|
|
|
|
interval = 5;
|
|
|
|
};
|
|
|
|
description = ''
|
2014-06-24 19:23:14 +00:00
|
|
|
Parameters to be written to <filename>/etc/atoprc</filename>.
|
2013-05-23 11:04:07 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf (cfg.settings != {}) {
|
|
|
|
environment.etc."atoprc".text =
|
|
|
|
concatStrings (mapAttrsToList (n: v: "${n} ${toString v}\n") cfg.settings);
|
|
|
|
};
|
|
|
|
}
|