dotfiles/modules/applications/qbittorrent.nix

13 lines
181 B
Nix
Raw Normal View History

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