15 lines
273 B
Nix
15 lines
273 B
Nix
{
|
|
services.mediatomb = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
serverName = "Rock 5B";
|
|
mediaDirectories = [
|
|
{
|
|
path = "/mnt/hd/torrent";
|
|
recursive = true;
|
|
}
|
|
];
|
|
};
|
|
|
|
users.users.mediatomb.extraGroups = [ "transmission" ];
|
|
}
|