summaryrefslogtreecommitdiffstats
path: root/makefu/2configs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2021-12-27 00:17:13 +0100
committermakefu <github@syntax-fehler.de>2021-12-27 00:17:13 +0100
commit6d376ce17a7116558e7a43a75ddeec68f6038874 (patch)
treeb74803f4ff9f27b6efccfdaeb6e943a5acaff4e8 /makefu/2configs
parent26e0cca2e22fde8ae150354d949d9cfeb8b1833b (diff)
ma home: add wip tonie module
Diffstat (limited to 'makefu/2configs')
-rw-r--r--makefu/2configs/home/tonie.nix89
1 files changed, 89 insertions, 0 deletions
diff --git a/makefu/2configs/home/tonie.nix b/makefu/2configs/home/tonie.nix
new file mode 100644
index 00000000..e57115a0
--- /dev/null
+++ b/makefu/2configs/home/tonie.nix
@@ -0,0 +1,89 @@
+{ config, pkgs, lib, ... }:
+let
+ bp = pkgs.callPackage ( pkgs.fetchFromGitHub {
+ repo = "npmlock2nix";
+ owner = "nix-community";
+ rev = "ff17a3c59233911f776d8d462d61d82a3e41df34";
+ sha256 = "0l624gkkpn1r0g48b204k0wcqm9cwy5rzd5mnxwfjhyjj1wg4nl7";
+
+ }) {};
+ backend_port = 30005;
+ #host = config.networking.hostName;
+ ident = 998;
+ user = "${toString ident}:${toString ident}";
+ #backend_host = "tonie.lan";
+ backend_host = "tonie.omo.r";
+ frontend_port = 30006;
+ homedir = "/var/lib/tonies";
+ albumdir = "${homedir}/albumart/";
+ vueconfig = pkgs.writeText "vueconfig" ''
+ module.exports = {
+ devServer: {
+ disableHostCheck: true
+ },
+ }
+ '';
+ srcpkg = pkgs.fetchFromGitHub {
+ owner = "makefu";
+ repo = "toniebox-audio-match";
+ rev = "f652016a79de97c2395e81d010a139d0167d4f0f";
+ sha256 = "11mvdzs6pabfkikxpdyxg3vqxyl7n5w1z18ycbyjb2nqgyiss4dm";
+ };
+ package = bp.build {
+ src = srcpkg + /client;
+ installPhase = "cp -r dist $out";
+ buildCommands = [ "npm run build" ];
+ };
+ audiobookdir = "/media/cryptX/music/kinder_hoerspiele";
+ # TONIE_AUDIO_MATCH_USER = username;
+ # TONIE_AUDIO_MATCH_PASS = password;
+ tonie-env = toString <secrets/tonie.env>;
+in
+ {
+ systemd.tmpfiles.rules = [
+ "d ${albumdir} 1750 toniebox toniebox -"
+ ];
+ networking.firewall.allowedTCPPorts = [ frontend_port backend_port ];
+ virtualisation.oci-containers.containers.toniebox-front = {
+ image = "makefoo/toniebox-audio-match_front:1.0.0";
+ inherit user;
+ environment = {
+ VUE_APP_BACKEND_SCHEME = "http";
+ VUE_APP_BACKEND_HOST = backend_host;
+ #VUE_APP_BACKEND_PORT = toString backend_port;
+ VUE_APP_BACKEND_PORT = "80";
+ };
+ ports = [ "${toString frontend_port}:8080" ];
+ volumes = [
+ "${albumdir}:/frontend/public/assets/covers"
+ "${vueconfig}:/frontend/vue.config.js"
+ ];
+ };
+
+ users.users.toniebox = {
+ isSystemUser = true;
+ uid = ident;
+ home = homedir;
+ createHome = true;
+ group = "toniebox";
+ };
+ users.groups.toniebox.gid = ident;
+
+ virtualisation.oci-containers.containers.toniebox-back = {
+ image = "makefoo/toniebox-audio-match_back:1.0.0";
+ inherit user;
+ environmentFiles = [ tonie-env ];
+ ports = [ "${toString backend_port}:5000" ];
+ volumes = [
+ "${albumdir}:/backend/assets/covers"
+ "${audiobookdir}:/backend/assets/audiobooks"
+ ];
+ };
+ services.nginx.virtualHosts."tonie" = {
+ serverAliases = [ "tonie.lan" "tonie.omo.r" backend_host ];
+ locations."/".root = package;
+ locations."/upload".proxyPass = "http://localhost:${toString backend_port}";
+ locations."/creativetonies".proxyPass = "http://localhost:${toString backend_port}";
+ locations."/audiobooks".proxyPass = "http://localhost:${toString backend_port}";
+ };
+}