mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
feat(mediabox): mediatomb
This commit is contained in:
parent
2dfb1d9a4a
commit
59808530ec
3 changed files with 27 additions and 7 deletions
|
|
@ -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 ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue