nixos/gitea: add tar.zst to the dump type

This commit is contained in:
Dmitriy Kholkin 2023-01-16 03:34:11 +03:00
parent 99f3708566
commit 8e6f6d7db1
No known key found for this signature in database
GPG key ID: FD266B810DF48DF2

View file

@ -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.";
};