Unverified Commit 6221768b authored by Niklas Korz's avatar Niklas Korz Committed by GitHub
Browse files

nixos/akkoma: change type of extraStatic sources to types.pathInStore (#470736)

parents e3a6b831 8a6fb272
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -675,9 +675,9 @@ in
      };

      extraStatic = mkOption {
        type = with types; nullOr (attrsOf package);
        type = with types; nullOr (attrsOf pathInStore);
        description = ''
          Attribute set of extra packages to add to the static files directory.
          Attribute set of extra paths to add to the static files directory.

          Do not add frontends here. These should be configured through
          [{option}`services.akkoma.frontends`](#opt-services.akkoma.frontends).