summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/munin-master.nix10
-rw-r--r--config/munin-node.nix9
2 files changed, 19 insertions, 0 deletions
diff --git a/config/munin-master.nix b/config/munin-master.nix
new file mode 100644
index 0000000..29e6577
--- /dev/null
+++ b/config/munin-master.nix
@@ -0,0 +1,10 @@
+{ config, lib, pkgs, ... }:
+{
+ services.munin-cron = {
+ enable = true;
+ hosts = ''
+ [dragon]
+ address localhost
+ '';
+ };
+} \ No newline at end of file
diff --git a/config/munin-node.nix b/config/munin-node.nix
new file mode 100644
index 0000000..a3a80a8
--- /dev/null
+++ b/config/munin-node.nix
@@ -0,0 +1,9 @@
+{ config, lib, pkgs, ... }:
+{
+ services.munin-node = {
+ enable = true;
+ extraConfig = ''
+ ignore_file ^apc_nis$
+ '';
+ };
+} \ No newline at end of file