Merge pull request #211005 from AtaraxiaSjel/nixos/gitea-zstd

nixos/gitea: add tar.zst to the dump type
This commit is contained in:
Pascal Bach 2023-01-18 09:22:38 +01:00 committed by GitHub
commit e229ca64d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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