nixos/modules/desktop/apps/qbittorrent/default.nix

16 lines
305 B
Nix
Raw Normal View History

2024-08-21 18:34:12 +04:00
{ outputs, options, config, lib, pkgs, ...}:
let
cfg = config.modules.desktop.apps.qbittorrent;
in
{
options.modules.desktop.apps.qbittorrent = {
enable = lib.mkEnableOption false;
};
config = lib.mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
qbittorrent
];
};
}