Unverified Commit e1e1c7d3 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

nixos/mautrix-whatsapp: fix defaultText of serviceDependencies (#422774)

parents 54eb3863 21aee974
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -105,9 +105,7 @@ in
    serviceDependencies = lib.mkOption {
      type = with lib.types; listOf str;
      default = lib.optional config.services.matrix-synapse.enable config.services.matrix-synapse.serviceUnit;
      defaultText = lib.literalExpression ''
        optional config.services.matrix-synapse.enable config.services.matrix-synapse.serviceUnits
      '';
      defaultText = lib.literalExpression "lib.optional config.services.matrix-synapse.enable config.services.matrix-synapse.serviceUnits";
      description = ''
        List of Systemd services to require and wait for when starting the application service.
      '';