From 8e6f6d7db15002a5e91fabc4aa0888d5ecf5f9e1 Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Mon, 16 Jan 2023 03:34:11 +0300 Subject: [PATCH] nixos/gitea: add tar.zst to the dump type --- nixos/modules/services/misc/gitea.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/gitea.nix b/nixos/modules/services/misc/gitea.nix index 3ae514fe68ff..14bf6aebb681 100644 --- a/nixos/modules/services/misc/gitea.nix +++ b/nixos/modules/services/misc/gitea.nix @@ -175,7 +175,7 @@ in }; type = mkOption { - type = types.enum [ "zip" "rar" "tar" "sz" "tar.gz" "tar.xz" "tar.bz2" "tar.br" "tar.lz4" ]; + type = types.enum [ "zip" "rar" "tar" "sz" "tar.gz" "tar.xz" "tar.bz2" "tar.br" "tar.lz4" "tar.zst" ]; default = "zip"; description = lib.mdDoc "Archive format used to store the dump file."; };