2024-05-18 23:57:31 +02:00
|
|
|
{ lib, config, ... }:
|
|
|
|
with lib;
|
|
|
|
with types;
|
|
|
|
{
|
|
|
|
imports = [ ./default.nix ];
|
|
|
|
|
|
|
|
config = {
|
|
|
|
components.monitor.enable = mkDefault true;
|
|
|
|
components.monitor.metrics.enable = mkDefault false;
|
2024-05-19 10:44:37 +02:00
|
|
|
components.monitor.opentelemetry.enable = false;
|
|
|
|
|
|
|
|
services.journald.extraConfig = "SystemMaxUse=1G";
|
2024-05-18 23:57:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|