Regular configuration options as described in rclone's documentation https://rclone.org/docs/. When specifying options follow the formatting process outlined here https://rclone.org/docs/#config-config-file, namley:
- Remove the leading double-dash (--) from the rclone option name
- Replace hyphens (-) with underscores (_)
- Convert to lowercase
- Use the resulting string as your configuration key
For example, the rclone option "--mega-hard-delete" would use "hard_delete" as the config key.
Security Note: Always use the secrets option for sensitive data instead of the config option to prevent exposing credentials to the world-readable Nix store.
Declarations
Type
An attribute set containing a remote type and options.
Default
{ }
Example
{
type = "mega"; # Required - specifies the remote type
user = "you@example.com";
hard_delete = true;
}
Sign in to create a configuration using this setting.