depot/cluster/services/chant/default.nix

12 lines
192 B
Nix
Raw Normal View History

2024-07-10 16:49:47 +03:00
{ config, ... }:
{
services.chant = {
nodes.listener = config.services.consul.nodes.agent;
nixos.listener = [
./listener.nix
];
simulacrum.deps = [ "consul" ];
2024-07-10 16:49:47 +03:00
};
}