15 lines
313 B
Nix
15 lines
313 B
Nix
{ lib, config, ... }:
|
|
with lib;
|
|
with types;
|
|
{
|
|
imports = [ ./default.nix ];
|
|
|
|
config = {
|
|
components.monitor.enable = mkDefault true;
|
|
components.monitor.metrics.enable = mkDefault false;
|
|
components.monitor.opentelemetry.enable = false;
|
|
|
|
services.journald.extraConfig = "SystemMaxUse=1G";
|
|
};
|
|
|
|
}
|