nixos-config/config/services/loki.nix

8 lines
146 B
Nix
Raw Normal View History

2022-06-12 16:42:42 +01:00
_: {
2022-01-15 12:08:46 +01:00
services.loki = {
enable = true;
configFile = ./loki.yaml;
};
2022-06-12 16:39:15 +01:00
networking.firewall.interfaces."wg0".allowedTCPPorts = [3100];
2022-01-15 12:08:46 +01:00
}