Compare commits

...

2 commits

Author SHA1 Message Date
sid
399347fb9e Merge pull request 'start systemd-journal-upload after tailscaled' (#72) from develop into master
Some checks failed
Deploy configs / deploy-configs (push) Failing after 49s
Reviewed-on: #72
2026-05-19 13:06:58 +02:00
sid
72265ffed7 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
2026-05-19 13:06:13 +02:00

View file

@ -3,4 +3,15 @@
enable = true; enable = true;
settings.Upload.URL = "http://100.64.0.6:19532"; 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"
];
};
} }