15 lines
285 B
Nix
15 lines
285 B
Nix
{
|
|
flake.modules.nixos.qbittorrent-client = {
|
|
networking.firewall = {
|
|
allowedTCPPorts = [ 43864 ];
|
|
allowedUDPPorts = [ 43864 ];
|
|
};
|
|
};
|
|
|
|
flake.modules.homeManager.qbittorrent-client =
|
|
{ pkgs, ... }:
|
|
{
|
|
home.packages = [ pkgs.qbittorrent ];
|
|
};
|
|
}
|