Compare commits

...

1 Commits

Author SHA1 Message Date
oysteikt b57a935b4c base/rsyslogd: init
Build topology graph / evals (push) Successful in 2m42s
Eval nix flake / evals (push) Successful in 6m50s
2026-06-08 12:58:37 +09:00
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
'';
}