Merge pull request #265061 from Janik-Haag/woodpecker

nixos/woodpecker-server: fix environmentFile example

authored by Janik and committed by GitHub 633241b0 1142db20

+1 -1
+1 -1
nixos/modules/services/continuous-integration/woodpecker/server.nix
··· 33 environmentFile = lib.mkOption { 34 type = with lib.types; coercedTo path (f: [ f ]) (listOf path); 35 default = [ ]; 36 - example = "/root/woodpecker-server.env"; 37 description = lib.mdDoc '' 38 File to load environment variables 39 from. This is helpful for specifying secrets.
··· 33 environmentFile = lib.mkOption { 34 type = with lib.types; coercedTo path (f: [ f ]) (listOf path); 35 default = [ ]; 36 + example = [ "/root/woodpecker-server.env" ]; 37 description = lib.mdDoc '' 38 File to load environment variables 39 from. This is helpful for specifying secrets.