4b12e04e15
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 8m34s
21 lines
309 B
Nix
21 lines
309 B
Nix
{
|
|
lib,
|
|
config,
|
|
inputs,
|
|
...
|
|
}:
|
|
with lib;
|
|
with types;
|
|
{
|
|
imports = [
|
|
../timezone.nix
|
|
];
|
|
|
|
config = {
|
|
telemetry.enable = mkDefault true;
|
|
telemetry.metrics.enable = mkDefault false;
|
|
telemetry.opentelemetry.enable = false;
|
|
services.journald.extraConfig = "SystemMaxUse=1G";
|
|
};
|
|
|
|
}
|