europa: enable journald-remote

This commit is contained in:
Oystein Kristoffer Tveit 2024-09-04 10:35:34 +02:00
parent fbd5b3798b
commit 7c79a6c37b
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
2 changed files with 15 additions and 0 deletions

View File

@ -5,6 +5,7 @@
./services/avahi.nix
./services/docker.nix
./services/journald-remote.nix
];
boot.loader.systemd-boot.enable = true;

View File

@ -0,0 +1,14 @@
{ ... }:
{
services.journald.upload = {
enable = true;
settings.Upload = {
URL = "https://10.250.14.105:19532";
# ServerKeyFile = toString ./key.pem;
# ServerCertificateFile = toString ./cert.pem;
ServerKeyFile = "-";
ServerCertificateFile = "-";
TrustedCertificateFile = "-";
};
};
}