transmission service with alias

This commit is contained in:
Ivan Dimitrov 2023-10-06 16:54:07 +03:00
parent 1a93e0c79a
commit 2c1cd4962f
3 changed files with 9 additions and 1 deletions

View File

@ -17,7 +17,6 @@
gimp
mpv
imv
transmission
gnome.cheese
# cli utils
ripgrep

View File

@ -18,6 +18,7 @@
gc = "git commit";
dev = "nix develop --command $SHELL";
la = "ls -alh";
torrent = "transmission-remote";
};
history = {
expireDuplicatesFirst = true;

View File

@ -135,5 +135,13 @@
alsa.enable = true;
pulse.enable = true;
};
transmission = {
enable = true;
openRPCPort = true;
settings = {
rpc-bind-address = "0.0.0.0";
rpc-whitelist = "127.0.0.1";
};
};
};
}