nixos-config/components/monitor/container.nix

22 lines
309 B
Nix
Raw Permalink Normal View History

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