Commit 19c9496c authored by nicoo's avatar nicoo
Browse files

nixos/oci-containers: clean-up `dependsOn` example

This is more compact, and removes a syntax error.
parent 79b1189b
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -239,10 +239,8 @@ let
          example = literalExpression ''
            virtualisation.oci-containers.containers = {
              node1 = {};
              node2 = {
                dependsOn = [ "node1" ];
              }
            }
              node2.dependsOn = [ "node1" ];
            };
          '';
        };