diff options
| author | Akshay Nair <phenax5@gmail.com> | 2020-12-24 13:35:34 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2020-12-24 13:35:34 +0530 |
| commit | c99af9efb0288c5043c400a4cc3d65541cf2549f (patch) | |
| tree | a001e0f55125c1444981215b92de01e119db97b2 | |
| parent | 701cbf5a03a73dd1d06ec65f20750bcb041df555 (diff) | |
| download | nixos-config-c99af9efb0288c5043c400a4cc3d65541cf2549f.tar.gz nixos-config-c99af9efb0288c5043c400a4cc3d65541cf2549f.zip | |
Adds transmission and tremc
Diffstat (limited to '')
| -rw-r--r-- | configuration.nix | 29 | ||||
| -rw-r--r-- | login.nix | 1 | ||||
| -rw-r--r-- | packages.nix | 15 |
3 files changed, 38 insertions, 7 deletions
diff --git a/configuration.nix b/configuration.nix index 0d6d454..3ec0bfc 100644 --- a/configuration.nix +++ b/configuration.nix @@ -40,6 +40,35 @@ in { home = { stateVersion = "21.03"; }; }; + services.transmission = { + enable = true; + settings = { + "download-dir" = "/home/imsohexy/Downloads/dl"; + "download-queue-enabled" = true; + "download-queue-size" = 5; + "incomplete-dir" = "/home/imsohexy/Downloads/dl/incomplete"; + "incomplete-dir-enabled" = true; + "peer-port" = 51413; + "peer-port-random-high" = 65535; + "peer-port-random-low" = 49152; + "prefetch-enabled" = true; + "rename-partial-files" = true; + "rpc-authentication-required" = false; + "rpc-bind-address" = "127.0.0.1"; + "rpc-enabled" = true; + "rpc-port" = 9091; + "rpc-whitelist-enabled" = true; + "script-torrent-done-enabled" = false; + "script-torrent-done-filename" = ""; + "start-added-torrents" = true; + "trash-original-torrent-files" = false; + "umask" = 18; + "utp-enabled" = true; + "watch-dir" = "/home/an/Downloads/qute"; + "watch-dir-enabled" = false; + }; + }; + # X11 config services.xserver = { enable = true; @@ -27,6 +27,7 @@ in { "git" "networkmanager" "docker" + "transmission" ]; shell = pkgs.zsh; }; diff --git a/packages.nix b/packages.nix index 3aa0c6b..e5f48fb 100644 --- a/packages.nix +++ b/packages.nix @@ -42,28 +42,29 @@ let sxiv youtube-dl imagemagick - ]; - - utils = with pkgs; [ + ffmpeg-full + feh w3m mtm lf - libnotify dunst + gotop + tremc + ]; + + utils = with pkgs; [ + libnotify xcwd alsaUtils unzip curl jq wget - gotop killall inxi pciutils udiskie - feh # picom - ffmpeg-full # nm-applet # X stuff |
