nixos/buildkite-agent: add a default value for name option

Use the default name value from:
https://buildkite.com/docs/agent/configuration
This commit is contained in:
Rodney Lorrimar 2018-02-19 07:41:49 +00:00
parent 8132b24cdf
commit 21e9a3eb6f
No known key found for this signature in database
GPG key ID: E8E4A1E57778A1B6

View file

@ -68,6 +68,7 @@ in
name = mkOption {
type = types.str;
default = "%hostname-%n";
description = ''
The name of the agent.
'';