Initial commit
This commit is contained in:
19
modules/features/qbittorrent-client.nix
Normal file
19
modules/features/qbittorrent-client.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ den, ... }:
|
||||
{
|
||||
lux.qbittorrent-client = {
|
||||
includes = [
|
||||
(den.lib.perHost {
|
||||
nixos.networking.firewall = {
|
||||
allowedTCPPorts = [ 43864 ];
|
||||
allowedUDPPorts = [ 43864 ];
|
||||
};
|
||||
})
|
||||
];
|
||||
|
||||
homeManager =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [ pkgs.qbittorrent ];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user