mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
nixos/woodpecker-server: fix environmentFile example
This commit is contained in:
parent
4d4a531350
commit
15babfbc12
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ in
|
||||||
environmentFile = lib.mkOption {
|
environmentFile = lib.mkOption {
|
||||||
type = with lib.types; coercedTo path (f: [ f ]) (listOf path);
|
type = with lib.types; coercedTo path (f: [ f ]) (listOf path);
|
||||||
default = [ ];
|
default = [ ];
|
||||||
example = "/root/woodpecker-server.env";
|
example = [ "/root/woodpecker-server.env" ];
|
||||||
description = lib.mdDoc ''
|
description = lib.mdDoc ''
|
||||||
File to load environment variables
|
File to load environment variables
|
||||||
from. This is helpful for specifying secrets.
|
from. This is helpful for specifying secrets.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue