From 235582604f1417d994ab8c288e92742de3d0cca6 Mon Sep 17 00:00:00 2001 From: Clayton Hickey Date: Sun, 8 Feb 2026 15:38:30 -0500 Subject: [PATCH] move languini to nixnas --- nixnas/nixnas.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nixnas/nixnas.nix b/nixnas/nixnas.nix index d560d18..9d062c9 100644 --- a/nixnas/nixnas.nix +++ b/nixnas/nixnas.nix @@ -50,6 +50,7 @@ in jellyfinPort hydraPort nextcloudPort + config.services.languini.port ]; allowedUDPPorts = [ config.networking.wireguard.interfaces.${wireguardInterface}.listenPort @@ -180,6 +181,13 @@ in jwtSecretFile = "/Block/onlyoffice.jwt.secret"; }; + services.languini = { + enable = true; + stateDir = "/Block/languini"; + host = wireguardIP; + port = 5267; + }; + boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;