challenger/minidlna: init
This commit is contained in:
@@ -18,6 +18,7 @@
|
|||||||
./services/frigate.nix
|
./services/frigate.nix
|
||||||
./services/jellyfin.nix
|
./services/jellyfin.nix
|
||||||
./services/komga.nix
|
./services/komga.nix
|
||||||
|
./services/minidlna.nix
|
||||||
./services/nextcloud.nix
|
./services/nextcloud.nix
|
||||||
./services/nginx.nix
|
./services/nginx.nix
|
||||||
./services/postgres.nix
|
./services/postgres.nix
|
||||||
|
|||||||
@@ -0,0 +1,17 @@
|
|||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
# Minidlna local music streaming
|
||||||
|
services.minidlna = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
openFirewall = true;
|
||||||
|
settings = {
|
||||||
|
friendly_name = "Challenger";
|
||||||
|
inotify = "yes";
|
||||||
|
media_dir = [
|
||||||
|
"/tank/media/music"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user