2023-04-25 15:35:09 +02:00
|
|
|
{ pkgs, config, ... }: {
|
|
|
|
home.packages = [
|
|
|
|
pkgs.qbittorrent
|
|
|
|
];
|
|
|
|
|
2023-04-30 04:30:15 +02:00
|
|
|
satellite.persistence.at.state.apps.QBittorrent.directories = [
|
|
|
|
"${config.xdg.configHome}/qBittorrent" # Config options
|
|
|
|
];
|
|
|
|
|
|
|
|
satellite.persistence.at.cache.apps.QBittorrent.directories = [
|
2023-04-27 01:08:20 +02:00
|
|
|
# TODO: investigate which subdirectories/files I actually want to keep
|
2023-04-30 04:30:15 +02:00
|
|
|
"${config.xdg.dataHome}/qBittorrent" # Torrent files, logs, etc
|
2023-04-27 01:08:20 +02:00
|
|
|
];
|
2023-04-25 15:35:09 +02:00
|
|
|
}
|