media init i guess?

This commit is contained in:
Sakooooo 2025-01-01 14:23:40 +04:00
parent 543ab58437
commit c06994c7d2
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 9 additions and 0 deletions

View file

@ -0,0 +1 @@
{ imports = [ ./qbittorrent.nix ]; }

View file

@ -0,0 +1,8 @@
{ 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 { };
}