nix-config/modules/desktop/apps/qbittorrent.nix
Jordan Holt 69c3e90826
All checks were successful
Check flake / build-amd64-linux (push) Successful in 2m57s
Remove exception for insecure qbittorrent
2024-11-22 14:31:08 +00:00

18 lines
316 B
Nix

{ config, lib, pkgs, ... }:
let cfg = config.modules.desktop.apps.qbittorrent;
in {
options.modules.desktop.apps.qbittorrent = {
enable = lib.mkOption {
default = false;
example = true;
};
};
config = lib.mkIf cfg.enable {
user.packages = with pkgs; [
qbittorrent
];
};
}