summaryrefslogtreecommitdiff
path: root/hm/soft/torrent.nix
blob: 63150c2c59432bb9c7df9b802286efa226829dff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, lib, pkgs, ... }:
let
  cfg = config.hm.soft.torrent;
in
{
  options.hm.soft.torrent.enable = lib.mkEnableOption "torrenting software / qbittorrent";
  config = lib.mkIf cfg.enable {
    home.packages = with pkgs; [
      qbittorrent-enhanced
    ];
  };
}