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