base/rsyslogd: init

This commit is contained in:
h7x4
2026-06-08 12:58:37 +09:00
parent b4582a160f
commit b57a935b4c
2 changed files with 14 additions and 0 deletions
+1
View File
@@ -37,6 +37,7 @@
./services/prometheus-node-exporter.nix
./services/prometheus-systemd-exporter.nix
./services/roowho2.nix
./services/rsyslogd.nix
./services/scrutiny-collector.nix
./services/smartd.nix
./services/thermald.nix
+13
View File
@@ -0,0 +1,13 @@
{ ... }:
{
services.rsyslogd = {
enable = true;
defaultConfig = ''
*.* @loghost.pvv.ntnu.no
'';
};
services.journald.extraConfig = ''
ForwardToSyslog=yes
'';
}