12 lines
267 B
Nix
12 lines
267 B
Nix
|
{ config, lib, ... }:
|
||
|
{
|
||
|
ways = lib.mkIf config.simulacrum {
|
||
|
ways-test-simple = config.lib.forService "ways" {
|
||
|
target = "http://nowhere";
|
||
|
};
|
||
|
ways-test-consul = config.lib.forService "ways" {
|
||
|
consulService = "ways-test-service";
|
||
|
};
|
||
|
};
|
||
|
}
|