From f5ed58cb5c3a7da5f6f59d897bf94695f76c1cec Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy <dmitriy@pleshevski.ru> Date: Fri, 21 Feb 2025 22:14:04 +0300 Subject: [PATCH] host/{home,asus}: add plantuml-server --- hosts/asus-gl553vd/configuration.nix | 6 ++++++ hosts/home/configuration.nix | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/hosts/asus-gl553vd/configuration.nix b/hosts/asus-gl553vd/configuration.nix index 28ca1ae..23d6e0d 100644 --- a/hosts/asus-gl553vd/configuration.nix +++ b/hosts/asus-gl553vd/configuration.nix @@ -31,6 +31,12 @@ package = pkgs.unstable.ollama; }; + services.plantuml-server = { + enable = true; + package = pkgs.unstable.plantuml-server; + listenPort = 33050; + }; + # Fix boot issue containers.telegram.bindMounts."/dev/dri/card1" = { }; diff --git a/hosts/home/configuration.nix b/hosts/home/configuration.nix index 399c4cd..ba39fa0 100644 --- a/hosts/home/configuration.nix +++ b/hosts/home/configuration.nix @@ -66,6 +66,12 @@ programs.sniffnet.enable = true; + services.plantuml-server = { + enable = true; + package = pkgs.unstable.plantuml-server; + listenPort = 33050; + }; + ################################################################################ # Containers ################################################################################