blob: 9f1cf33989e3562bcef9e19d4061b93cace79c11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
{config, lib, pkgs, ... }:
{
  options.makefu.dl-dir = lib.mkOption {
    type = lib.types.str;
    description = "Default download directory";
    default = "/media/cryptX/torrent";
  };
  options.makefu.torrent-secrets = lib.mkOption {
    type = lib.types.str;
    default = "/home/makefu/secrets/torrent";
  };
}
  |