From 745b342aabb20bb68033099ccf92ea2cc3264779 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Thu, 24 Jan 2019 09:53:21 +0100 Subject: [PATCH] installation airsonic --- systems/LoutreOS/services.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/systems/LoutreOS/services.nix b/systems/LoutreOS/services.nix index 711f83c13..7f9744e6e 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 = {