Unverified Commit a1848a66 authored by piegames's avatar piegames Committed by GitHub
Browse files

nixos/stash: Fix regex in default value (#403279)

parents 7c716c67 8a71705a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -225,7 +225,7 @@ let
      };
      gallery_cover_regex = mkOption {
        type = types.str;
        default = "(poster|cover|folder|board)\.[^\.]+$";
        default = "(poster|cover|folder|board)\\.[^.]+$";
        description = "Regex used to identify images as gallery covers";
      };
      no_proxy = mkOption {