nixos-config/config/services/loki.nix

8 lines
146 B
Nix
Raw Normal View History

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