mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
26 lines
380 B
Nix
26 lines
380 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 ];
|
|
};
|
|
};
|
|
}
|