blob: d8c9790aaed5756375c1b35d2b695eaec5f3a3b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ config, lib, pkgs, ... }:
let
cfg = config.my.services.loki;
in
{
imports = [
./grafana.nix
./loki.nix
./node-exporter.nix
./prometheus.nix
./promtail.nix
];
}
|