Big update
This commit is contained in:
parent
17dc67816a
commit
4be1762868
17 changed files with 1238 additions and 1338 deletions
13
additional-software.nix
Normal file
13
additional-software.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ lib, config, pkgs, ... }: {
|
||||
options = {
|
||||
config.downloadSoftwares = lib.mkEnableOption "Enable qbittorrent, aria2 and yt-dlp";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.downloadSoftwares.enable {
|
||||
home.packages = with pkgs; [
|
||||
yt-dlp
|
||||
qbittorrent
|
||||
aria2
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue