Big update

This commit is contained in:
ant 2024-08-24 17:49:02 +02:00
parent 739f3d97f2
commit 62d4de0360
10 changed files with 328 additions and 103 deletions

View file

@ -1,14 +1,19 @@
{ lib, config, pkgs, ... }: {
options = {
config.downloadSoftwares = lib.mkEnableOption "Enable qbittorrent, aria2 and yt-dlp";
};
{ lib, config, pkgs, variant, ... }: {
config = {
home.packages = with pkgs; [
yt-dlp
qbittorrent
aria2
pipewire
];
home.packages =
if variant == "default" then
with pkgs; [
yt-dlp
qbittorrent
aria2
pipewire
discord
feather # monero wallet
litecoin
# librewolf
spotify
ungoogled-chromium
]
else [];
};
}