flake/hosts/blacksteel/services/qbittorrent.nix

9 lines
194 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
2024-08-11 10:08:41 +00:00
# TODO: https://github.com/NixOS/nixpkgs/pull/287923
# currently running qbittorrent-nox with tmux :c
environment.systemPackages = with pkgs; [
qbittorrent-nox
];
}