summary refs log tree commit diff
path: root/nixos/modules/services
diff options
context:
space:
mode:
authorDmitriy Kholkin <ataraxiadev@ataraxiadev.com>2023-01-16 03:34:11 +0300
committerDmitriy Kholkin <ataraxiadev@ataraxiadev.com>2023-01-16 03:34:11 +0300
commit8e6f6d7db15002a5e91fabc4aa0888d5ecf5f9e1 (patch)
tree72433ae97ae24e227b09a84c32497024dff92e73 /nixos/modules/services
parent99f3708566b6da0e3979f41cf97c8d6efbcc52a1 (diff)
downloadnixpkgs-8e6f6d7db15002a5e91fabc4aa0888d5ecf5f9e1.tar
nixpkgs-8e6f6d7db15002a5e91fabc4aa0888d5ecf5f9e1.tar.gz
nixpkgs-8e6f6d7db15002a5e91fabc4aa0888d5ecf5f9e1.tar.bz2
nixpkgs-8e6f6d7db15002a5e91fabc4aa0888d5ecf5f9e1.tar.lz
nixpkgs-8e6f6d7db15002a5e91fabc4aa0888d5ecf5f9e1.tar.xz
nixpkgs-8e6f6d7db15002a5e91fabc4aa0888d5ecf5f9e1.tar.zst
nixpkgs-8e6f6d7db15002a5e91fabc4aa0888d5ecf5f9e1.zip
nixos/gitea: add tar.zst to the dump type
Diffstat (limited to 'nixos/modules/services')
-rw-r--r--nixos/modules/services/misc/gitea.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/gitea.nix b/nixos/modules/services/misc/gitea.nix
index 3ae514fe68f..14bf6aebb68 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.";
         };