15 lines
240 B
Nix
15 lines
240 B
Nix
|
|
{ lib, ... }:
|
||
|
|
|
||
|
|
#with lib;
|
||
|
|
|
||
|
|
{
|
||
|
|
options.services.rclone = {
|
||
|
|
cacheSize = lib.mkOption {
|
||
|
|
type = lib.types.str;
|
||
|
|
default = "20G";
|
||
|
|
description = "The maximum size of the vfs cache";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|
||
|
|
# vim: set et ts=2 sw=2 ai:
|