Files
nix-files/machines/servo/services/munin.nix

13 lines
231 B
Nix

{ config, ... }:
{
services.munin-node.enable = true;
services.munin-cron = {
enable = true;
# collect data from the localhost
hosts = ''
[${config.networking.hostName}]
address localhost
'';
};
}