9 lines
204 B
Nix
9 lines
204 B
Nix
{ 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 { };
|
|
}
|