Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add victorialogs/traces

+23
+4
host-specific/misaki/networking.nix
··· 98 98 564 99 99 # Misc development 100 100 3000 101 + # Victoria Traces 102 + 10428 103 + # Victoria Logs 104 + 9428 101 105 ]; 102 106 }; 103 107
+19
host-specific/misaki/services.nix
··· 397 397 configDir = "/srv/shokuhou/applications/jellyfin/config"; 398 398 }; 399 399 400 + age.secrets.victoriapass = { 401 + file = ../../secrets/victoria-secret.age; 402 + owner = "root"; 403 + group = "root"; 404 + }; 405 + services.victorialogs = { 406 + enable = true; 407 + stateDir = "/srv/shokuhou/applications/victoria/logs"; 408 + basicAuthUsername = "noah"; 409 + basicAuthPasswordFile = config.age.secrets.victoriapass.path; 410 + }; 411 + 412 + services.victoriatraces = { 413 + enable = true; 414 + stateDir = "/srv/shokuhou/applications/victoria/traces"; 415 + basicAuthUsername = "noah"; 416 + basicAuthPasswordFile = config.age.secrets.victoriapass.path; 417 + }; 418 + 400 419 # Litterbox, collect my IRC logs 401 420 systemd = { 402 421 services = {