stockholm/makefu/3modules/torrent.nix

14 lines
318 B
Nix
Raw Normal View History

2017-01-09 15:01:46 +00:00
{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";
};
}