nixos-config/config/services/loki.nix

9 lines
154 B
Nix
Raw Normal View History

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