Add nzbget derivation
This commit is contained in:
@ -55,6 +55,7 @@
|
|||||||
"misc"
|
"misc"
|
||||||
"neovim"
|
"neovim"
|
||||||
"nextcloud"
|
"nextcloud"
|
||||||
|
"nzbget"
|
||||||
"plasma"
|
"plasma"
|
||||||
"ranger"
|
"ranger"
|
||||||
];
|
];
|
||||||
|
@ -131,6 +131,11 @@ rec {
|
|||||||
autostart = false;
|
autostart = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nzbget = {
|
||||||
|
enable = true;
|
||||||
|
mainDir = "~/Videos/NzbGet";
|
||||||
|
};
|
||||||
|
|
||||||
plasma = {
|
plasma = {
|
||||||
enable = false;
|
enable = false;
|
||||||
};
|
};
|
||||||
@ -312,6 +317,7 @@ rec {
|
|||||||
mediainfo
|
mediainfo
|
||||||
tree # Folder preview
|
tree # Folder preview
|
||||||
# gnome.zenity # Popups from terminal
|
# gnome.zenity # Popups from terminal
|
||||||
|
unrar
|
||||||
|
|
||||||
# Xooooorg/Desktop environment stuff
|
# Xooooorg/Desktop environment stuff
|
||||||
# xclip
|
# xclip
|
||||||
@ -343,7 +349,6 @@ rec {
|
|||||||
filezilla
|
filezilla
|
||||||
dnsmasq # For Access Point/Hotspot
|
dnsmasq # For Access Point/Hotspot
|
||||||
linux-wifi-hotspot
|
linux-wifi-hotspot
|
||||||
nzbget
|
|
||||||
spotdl-4_1_6
|
spotdl-4_1_6
|
||||||
|
|
||||||
# Tools
|
# Tools
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
./misc
|
./misc
|
||||||
./neovim
|
./neovim
|
||||||
./nextcloud
|
./nextcloud
|
||||||
|
./nzbget
|
||||||
./plasma
|
./plasma
|
||||||
./ranger
|
./ranger
|
||||||
];
|
];
|
||||||
|
1712
home/modules/nzbget/default.nix
Normal file
1712
home/modules/nzbget/default.nix
Normal file
File diff suppressed because it is too large
Load Diff
15
home/modules/nzbget/options.nix
Normal file
15
home/modules/nzbget/options.nix
Normal 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.";
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user