21 lines
307 B
Nix
21 lines
307 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./options.nix
|
||
|
];
|
||
|
|
||
|
services.incandescence = {
|
||
|
nodes = {
|
||
|
provider = config.services.consul.nodes.agent;
|
||
|
};
|
||
|
nixos = {
|
||
|
provider = [
|
||
|
./provider.nix
|
||
|
./provider-options.nix
|
||
|
];
|
||
|
};
|
||
|
simulacrum.deps = [ "consul" ];
|
||
|
};
|
||
|
}
|