13 lines
237 B
Nix
13 lines
237 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
services.navidrome = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
MusicFolder = "/var/lib/nextcloud/data/alexandre/files/Musique/";
|
||
|
Address = "0.0.0.0";
|
||
|
Port = "4533";
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|