Big update
This commit is contained in:
parent
739f3d97f2
commit
62d4de0360
10 changed files with 328 additions and 103 deletions
|
|
@ -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 [];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue