start systemd-journal-upload after tailscaled
All checks were successful
Build hosts / build-hosts (pull_request) Successful in 21s
Flake check / flake-check (pull_request) Successful in 21s

This commit is contained in:
sid 2026-05-19 13:06:13 +02:00
parent f6aca90009
commit 72265ffed7

View file

@ -3,4 +3,15 @@
enable = true;
settings.Upload.URL = "http://100.64.0.6:19532";
};
systemd.services.systemd-journal-upload = {
after = [
"network-online.target"
"tailscaled.service"
];
wants = [
"network-online.target"
"tailscaled.service"
];
};
}