Big update

This commit is contained in:
ant 2024-06-03 15:24:20 +02:00
parent 17dc67816a
commit 4be1762868
17 changed files with 1238 additions and 1338 deletions

13
additional-software.nix Normal file
View 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
];
};
}