nixos-config/components/monitor/container.nix

19 lines
339 B
Nix
Raw Permalink Normal View History

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