Unverified Commit fc69edcc authored by K900's avatar K900 Committed by GitHub
Browse files

Merge pull request #304327 from K900/bors-when

treewide: nuke remaining mdDoc leftovers
parents 7d7fedce 784330e2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ in
      /*
      enable = mkOption {
        default = true;
        description = lib.mdDoc ''
        description = ''
          Whenever to configure Bash as an interactive shell.
          Note that this tries to make Bash the default
          {option}`users.defaultUserShell`,
+1 −1
Original line number Diff line number Diff line
@@ -682,7 +682,7 @@ in

            # TODO Add "instrument_queries" option when upgrading to grafana 10.0
            # instrument_queries = mkOption {
            #   description = lib.mdDoc "Set to `true` to add metrics and tracing for database queries.";
            #   description = "Set to `true` to add metrics and tracing for database queries.";
            #   default = false;
            #   type = types.bool;
            # };
+2 −2
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ in {
      environment = {
        extra = mkOption {
          type = types.attrs;
          description = lib.mdDoc "Extra environment variables to pass run Coder's server with. See Coder documentation.";
          description = "Extra environment variables to pass run Coder's server with. See Coder documentation.";
          default = {};
          example = {
            CODER_OAUTH2_GITHUB_ALLOW_SIGNUPS = true;
@@ -84,7 +84,7 @@ in {
        };
        file = mkOption {
          type = types.nullOr types.path;
          description = lib.mdDoc "Systemd environment file to add to Coder.";
          description = "Systemd environment file to add to Coder.";
          default = null;
        };
      };