services.goss.settings
NixOS option
The global options in config file in yaml format. Refer to https://github.com/goss-org/goss/blob/master/docs/goss-json-schema.yaml for schema.
type: open submodule of (YAML 1.1 value)Default
{ }Example
declared in: nixos/modules/services/monitoring/goss.nixView source on NixOS/nixpkgs →{
addr = {
"tcp://localhost:8080" = {
local-address = "127.0.0.1";
reachable = true;
};
};
service = {
goss = {
enabled = true;
running = true;
};
};
}