mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
22 lines
374 B
Nix
22 lines
374 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
options = {
|
|
qbittorrent = {
|
|
enable = lib.mkEnableOption {
|
|
description = "Enable qBittorrent.";
|
|
default = false;
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf (config.gui.enable && config.qbittorrent.enable) {
|
|
|
|
home-manager.users.${config.user} = {
|
|
|
|
home.packages = with pkgs; [ qbittorrent ];
|
|
|
|
};
|
|
};
|
|
|
|
}
|