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

This commit is contained in:
piegames
2025-05-07 12:45:34 +02:00
committed by GitHub
+1 -1
View File
@@ -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 {