flake update

This commit is contained in:
2026-02-19 06:55:54 +01:00
parent 4f6394ceef
commit 6743043035
11 changed files with 337 additions and 75 deletions

View File

@@ -0,0 +1,10 @@
{lib, ...}: let
serviceName = "zugferd-service";
portUtils = import ../../../lib/port-utils.nix {inherit lib;};
in {
services.${serviceName} = {
enable = true;
port = portUtils.getPort serviceName "AZ-CLD-1";
host = "127.0.0.1";
};
}