feat(configuration): update journald and serial settings

- Set journald console to `/dev/ttyS0` for improved logging.
- Disable `serial-getty@ttyS0` service to avoid conflicts.
This commit is contained in:
Harald Hoyer 2025-02-19 11:16:34 +01:00
parent c4b1431221
commit bbbce81541
Signed by: harald
GPG key ID: F519A1143B3FBE32

View file

@ -63,6 +63,9 @@
''
);
services.journald.console = "/dev/ttyS0";
systemd.services."serial-getty@ttyS0".enable = lib.mkForce false;
# the container might want to listen on ports
networking.firewall.enable = true;
networking.firewall.allowedTCPPortRanges = [{ from = 1024; to = 65535; }];