workflow: increase download buffer

This commit is contained in:
cy 2025-04-27 17:51:34 -04:00
parent 14f9f0c06a
commit 0299139b8e
5 changed files with 41 additions and 10 deletions

View file

@ -25,7 +25,7 @@
compression_level = "none";
};
environmentFile = config.sops.secrets."garage/env".path;
logLevel = "warn";
logLevel = "info";
};
services.caddy.virtualHosts = {

View file

@ -14,15 +14,14 @@ let
--config ${config.sops.secrets."rclone/config".path} \
--allow-other \
--cache-dir /var/cache/rclone \
--transfers 64 \
--vfs-cache-mode full \
--transfers 16 \
--vfs-cache-mode writes \
--vfs-cache-min-free-space 5G \
--dir-cache-time 30d \
--no-checksum \
--no-modtime \
--vfs-fast-fingerprint \
--vfs-read-chunk-size 8M \
--vfs-read-chunk-streams 16 \
--vfs-read-chunk-size 128M \
--vfs-read-chunk-streams 0 \
--sftp-concurrency 64 \
--sftp-chunk-size 255k \
--buffer-size 0 \

View file

@ -360,8 +360,6 @@
];
};
services.trezord.enable = true;
programs.xwayland.enable = true;
services.udev.extraHwdb = ''
@ -386,7 +384,7 @@
programs.ccache.enable = true;
nix.settings.extra-sandbox-paths = [ config.programs.ccache.cacheDir ];
programs.fuse.userAllowOther = true;
nix.settings.sandbox = false;
nix.settings.sandbox = true;
programs.ssh.startAgent = true;