logs now show in /var/log/curlftpfs, when enabled previously unaccessed mounts still time out on first access without net, only it takes 120s instead of the more typical 20s since each mount expires independently, it can still take 15 minutes after 'ls /mnt/servo/media' for that directory to become usable (but at least it *does*)
11 lines
248 B
Nix
11 lines
248 B
Nix
{ pkgs, ... }:
|
|
{
|
|
sane.programs.curlftpfs = {
|
|
packageUnwrapped = pkgs.curlftpfs-sane;
|
|
sandbox.net = "all";
|
|
sandbox.autodetectCliPaths = "existing";
|
|
sandbox.keepPids = true;
|
|
sandbox.extraPaths = [ "/var/log/curlftpfs" ];
|
|
};
|
|
}
|