mirror of
https://github.com/Superredstone/nixos.git
synced 2026-08-19 11:48:57 +02:00
feat(bomba): add navidrome
This commit is contained in:
@@ -71,6 +71,9 @@
|
|||||||
"seerr.patrickcanal.it".extraConfig = ''
|
"seerr.patrickcanal.it".extraConfig = ''
|
||||||
reverse_proxy :${toString config.nixflix.seerr.port}
|
reverse_proxy :${toString config.nixflix.seerr.port}
|
||||||
'';
|
'';
|
||||||
|
"navidrome.patrickcanal.it".extraConfig = ''
|
||||||
|
reverse_proxy :${toString config.services.navidrome.settings.Port}
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./caddy.nix
|
./caddy.nix
|
||||||
|
./navidrome.nix
|
||||||
./gitea.nix
|
./gitea.nix
|
||||||
./nextcloud.nix
|
./nextcloud.nix
|
||||||
./nixflix.nix
|
./nixflix.nix
|
||||||
|
|||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
services.navidrome = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
Port = 8013;
|
||||||
|
MusicFolder = "/var/lib/nixflix/media/music/";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user