nixos/modules/desktop/apps/qbittorrent/default.nix
2024-08-21 18:34:12 +04:00

15 lines
305 B
Nix

{ 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
];
};
}