1

Add nzbget derivation

This commit is contained in:
2023-04-28 13:23:43 +02:00
parent 62c5dce182
commit c6960d406c
5 changed files with 1735 additions and 1 deletions

View File

@ -55,6 +55,7 @@
"misc"
"neovim"
"nextcloud"
"nzbget"
"plasma"
"ranger"
];

View File

@ -131,6 +131,11 @@ rec {
autostart = false;
};
nzbget = {
enable = true;
mainDir = "~/Videos/NzbGet";
};
plasma = {
enable = false;
};
@ -312,6 +317,7 @@ rec {
mediainfo
tree # Folder preview
# gnome.zenity # Popups from terminal
unrar
# Xooooorg/Desktop environment stuff
# xclip
@ -343,7 +349,6 @@ rec {
filezilla
dnsmasq # For Access Point/Hotspot
linux-wifi-hotspot
nzbget
spotdl-4_1_6
# Tools

View File

@ -21,6 +21,7 @@
./misc
./neovim
./nextcloud
./nzbget
./plasma
./ranger
];

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,15 @@
{
lib,
mylib,
...
}:
with lib;
with mylib.modules; {
enable = mkEnableOpt "Enable NzbGet";
mainDir = mkOption {
type = types.str;
default = "~/Videos/NzbGet";
description = "The folder, where nzbget stores downloaded data.";
};
}