sid.ovh/modules/nixos/journald-upload/default.nix
sid 00af06d380
All checks were successful
Build hosts / build-hosts (pull_request) Successful in 21s
Flake check / flake-check (pull_request) Successful in 21s
fix journald upload service config
2026-05-19 14:11:00 +02:00

17 lines
360 B
Nix

{
services.journald.upload = {
enable = true;
settings.Upload.URL = "http://100.64.0.6:19532";
};
systemd.services.systemd-journal-upload = {
after = [
"tailscaled.service"
"network-online.target"
];
wants = [ "network-online.target" ];
serviceConfig = {
TimeoutStartSec = 20; # Tailscale is slow
};
};
}