nixos-config/modules/rclone-options.nix

15 lines
240 B
Nix
Raw Permalink Normal View History

2022-03-29 11:01:27 +02:00
{ 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: