mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 20:20:41 +03:00
23 lines
304 B
Nix
23 lines
304 B
Nix
{
|
|
config,
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
xlib,
|
|
...
|
|
}:
|
|
{
|
|
services = {
|
|
navidrome = {
|
|
enable = false;
|
|
openFirewall = true;
|
|
# environmentFile = "";
|
|
settings = {
|
|
Address = "0.0.0.0";
|
|
Port = "4533";
|
|
MusicFolder = "/mnt/beets/music";
|
|
};
|
|
};
|
|
};
|
|
}
|