challenger/minidlna: init

This commit is contained in:
2026-07-31 22:41:09 +02:00
parent 9c68a620f2
commit a7844d6318
2 changed files with 18 additions and 0 deletions
+1
View File
@@ -18,6 +18,7 @@
./services/frigate.nix
./services/jellyfin.nix
./services/komga.nix
./services/minidlna.nix
./services/nextcloud.nix
./services/nginx.nix
./services/postgres.nix
+17
View File
@@ -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"
];
};
};
}