Enable prometheus, add loki config example, we don't have a global log system so it's not useful though

This commit is contained in:
Lillian Violet 2024-03-26 14:34:28 +01:00
parent b5be1009cf
commit fe1dbd4f95
5 changed files with 107 additions and 1 deletions

View file

@ -0,0 +1,10 @@
{
config,
pkgs,
...
}: {
services.loki = {
enable = true;
configFile = ./loki.yaml;
};
}