navidrome: configurable port

This commit is contained in:
Aly Raffauf 2024-06-08 10:04:44 -04:00
parent ae075c58d1
commit 678f551246

View file

@ -2,6 +2,7 @@
pkgs,
lib,
config,
self,
...
}: {
options = {
@ -12,32 +13,40 @@
default = "/mnt/Media/Music";
type = lib.types.str;
};
alyraffauf.containers.nixos.navidrome.port = lib.mkOption {
description = "Port for Navidrome.";
default = 4533;
type = lib.types.int;
};
};
config = lib.mkIf config.alyraffauf.containers.nixos.navidrome.enable {
containers.navidrome = {
autoStart = true;
bindMounts."/Music".hostPath = config.alyraffauf.containers.nixos.navidrome.musicDirectory;
config = {
config,
pkgs,
lib,
...
}: {
system.stateVersion = "24.05";
services.navidrome = {
enable = true;
openFirewall = true;
settings = {
Address = "0.0.0.0";
Port = 4533;
MusicFolder = "/Music";
DefaultTheme = "Auto";
SubsonicArtistParticipations = true;
UIWelcomeMessage = "Welcome to Navidrome! Registrations are closed.";
config = let
port = config.alyraffauf.containers.nixos.navidrome.port;
in
{
config,
pkgs,
lib,
...
}: {
system.stateVersion = "24.05";
services.navidrome = {
enable = true;
openFirewall = true;
settings = {
Address = "0.0.0.0";
Port = port;
MusicFolder = "/Music";
DefaultTheme = "Auto";
SubsonicArtistParticipations = true;
UIWelcomeMessage = "Welcome to Navidrome! Registrations are closed.";
};
};
};
};
};
};
}