2015-07-16 13:51:01 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
## TODO sort and split up
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
aria2
|
|
|
|
gnupg1compat
|
|
|
|
htop
|
|
|
|
i3lock
|
|
|
|
mosh
|
|
|
|
pass
|
|
|
|
pavucontrol
|
|
|
|
pv
|
|
|
|
pwgen
|
|
|
|
remmina
|
2021-10-26 19:01:00 +00:00
|
|
|
ripgrep
|
2015-07-16 13:51:01 +00:00
|
|
|
silver-searcher
|
2021-10-26 19:01:00 +00:00
|
|
|
transmission
|
2015-07-16 13:51:01 +00:00
|
|
|
wget
|
|
|
|
xsel
|
|
|
|
youtube-dl
|
2021-10-26 19:01:00 +00:00
|
|
|
(pkgs.writeDashBin "tether-on" ''
|
|
|
|
adb shell svc usb setFunctions rndis
|
|
|
|
'')
|
|
|
|
(pkgs.writeDashBin "tether-off" ''
|
|
|
|
adb shell svc usb setFunctions
|
|
|
|
'')
|
|
|
|
(pkgs.writeDashBin "dl-movie" ''
|
|
|
|
${pkgs.transmission}/bin/transmission-remote yellow.r -w /var/download/finished/sorted/movies -a "$@"
|
|
|
|
'')
|
|
|
|
(pkgs.writeDashBin "dl-series" ''
|
|
|
|
${pkgs.transmission}/bin/transmission-remote yellow.r -w /var/download/finished/sorted/series -a "$@"
|
|
|
|
'')
|
2015-07-16 13:51:01 +00:00
|
|
|
];
|
|
|
|
}
|