nixos/modules/server/media/qbittorrent.nix

9 lines
204 B
Nix
Raw Normal View History

2025-01-01 14:23:40 +04:00
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.void.server.media.qbittorrent;
in {
options.void.server.media.qbittorrent = { enable = mkEnableOption false; };
config = mkIf cfg.enable { };
}