14 lines
231 B
Nix
14 lines
231 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
{
|
||
|
|
||
|
services.navidrome = {
|
||
|
enable = true;
|
||
|
openFirewall = true;
|
||
|
group = "media";
|
||
|
user = "media";
|
||
|
settings.Address = "0.0.0.0";
|
||
|
settings.MusicFolder = "/media/arr/lidarr";
|
||
|
};
|
||
|
|
||
|
}
|