feat(mediabox): mediatomb

This commit is contained in:
arcnmx 2024-01-21 10:56:23 -08:00
parent 2dfb1d9a4a
commit 59808530ec
3 changed files with 27 additions and 7 deletions

View file

@ -16,6 +16,7 @@
nixos.tautulli
nixos.ombi
nixos.deluge
nixos.mediatomb
# yarr harr fiddle dee dee >w<
nixos.radarr
@ -47,6 +48,24 @@
};
};
services.mediatomb = {
serverName = "tewi";
mediaDirectories = [
rec {
path = "/mnt/Anime";
mountPoint = path;
}
rec {
path = "/mnt/Shows";
mountPoint = path;
}
rec {
path = "/mnt/Movies";
mountPoint = path;
}
];
};
hardware.opengl = {
enable = true;
extraPackages = with pkgs; [ mesa.drivers vaapiVdpau libvdpau-va-gl ];