14 lines
258 B
Nix
14 lines
258 B
Nix
{ lib, config, pkgs, ... }: {
|
|
options = {
|
|
config.downloadSoftwares = lib.mkEnableOption "Enable qbittorrent, aria2 and yt-dlp";
|
|
};
|
|
|
|
config = {
|
|
home.packages = with pkgs; [
|
|
yt-dlp
|
|
qbittorrent
|
|
aria2
|
|
pipewire
|
|
];
|
|
};
|
|
}
|