diff --git a/systems/LoutreOS/services.nix b/systems/LoutreOS/services.nix index 711f83c..7f9744e 100644 --- a/systems/LoutreOS/services.nix +++ b/systems/LoutreOS/services.nix @@ -10,6 +10,7 @@ let max_port = 52348; musique_port = 52349; factorio_port = 52351; + airsonic_port = 4040; in { @@ -62,6 +63,7 @@ in "gitea.${domaine}" = { ip = "127.0.0.1"; port = 3001; auth = false; }; "ci.${domaine}" = { ip = "127.0.0.1"; port = 52350; auth = false; }; "factorio.${domaine}" = { ip = "127.0.0.1"; port = factorio_port; auth = false; }; + "airsonic.${domaine}" = { ip = "127.0.0.1"; port = airsonic_port; auth = false; }; }; }; @@ -384,6 +386,9 @@ in public = true; username = "nyanloutre"; }; + + airsonic.enable = true; + airsonic.maxMemory = 500; }; systemd.services.dogetipbot-telegram = {