dotfiles/modules/applications/qbittorrent.nix

13 lines
191 B
Nix
Raw Normal View History

2022-05-02 03:39:50 +00:00
{ config, pkgs, lib, gui, identity, ... }: {
config = lib.mkIf gui.enable {
home-manager.users.${identity.user} = {
home.packages = with pkgs; [ qbittorrent ];
};
};
}