1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 04:02:10 +00:00

Merge pull request #265061 from Janik-Haag/woodpecker

nixos/woodpecker-server: fix environmentFile example
This commit is contained in:
Janik 2023-11-02 20:09:33 +01:00 committed by GitHub
commit 633241b05c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,7 +33,7 @@ in
environmentFile = lib.mkOption {
type = with lib.types; coercedTo path (f: [ f ]) (listOf path);
default = [ ];
example = "/root/woodpecker-server.env";
example = [ "/root/woodpecker-server.env" ];
description = lib.mdDoc ''
File to load environment variables
from. This is helpful for specifying secrets.