11 lines
156 B
Nix
11 lines
156 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
services.chant = {
|
||
|
nodes.listener = config.services.consul.nodes.agent;
|
||
|
nixos.listener = [
|
||
|
./listener.nix
|
||
|
];
|
||
|
};
|
||
|
}
|