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 gimp
mpv mpv
imv imv
transmission
gnome.cheese gnome.cheese
# cli utils # cli utils
ripgrep ripgrep

View File

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

View File

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