Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

programs.acd-cli.enable

Whether to enable acd-cli.

Type: boolean

Default:

false

Example:

true

Declared by:

programs.acd-cli.package

The acd-cli package to use.

Type: null or package

Default:

pkgs.acd-cli

Declared by:

programs.acd-cli.cacheSettings

Cache configuration settings for acd-cli. All the available options can be found here: https://acd-cli.readthedocs.io/en/latest/configuration.html#cache-ini.

Type: attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string))

Default:

{ }

Example:

{
  blacklist = {
    folders = [ ];
  };
  sqlite = {
    busy_timeout = 30000;
    filename = "nodes.db";
    journal_mode = "wal";
  };
}

Declared by:

programs.acd-cli.cliSettings

CLI configuration settings for acd-cli. All the available options can be found here: https://acd-cli.readthedocs.io/en/latest/configuration.html#acd-cli-ini.

Type: attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string))

Default:

{ }

Example:

{
  download = {
    keep_corrupt = false;
    keep_incomplete = true;
  };
  upload = {
    timeout_wait = 10;
  };
}

Declared by:

programs.acd-cli.clientSettings

Client configuration settings for acd-cli. All the available options can be found here: https://acd-cli.readthedocs.io/en/latest/configuration.html#acd-client-ini.

Type: attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string))

Default:

{ }

Example:

{
  endpoints = {
    filename = "endpoint_data";
    validity_duration = 259200;
  };
  transfer = {
    chunk_retries = 1;
    connection_timeout = 30;
    dl_chunk_size = 524288000;
    fs_chunk_size = 131072;
    idle_timeout = 60;
  };
}

Declared by:

programs.acd-cli.fuseSettings

FUSE configuration settings for acd-cli. All the available options can be found here: https://acd-cli.readthedocs.io/en/latest/configuration.html#fuse-ini.

Type: attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string))

Default:

{ }

Example:

{
  fs = {
    block_size = 512;
  };
  read = {
    open_chunk_limit = 10;
  };
  write = {
    buffer_size = 32;
    timeout = 30;
  };
}

Declared by: