fix umami

This commit is contained in:
soraefir
2026-05-13 00:41:36 +02:00
parent f0befa87be
commit 7bead6b3ac
2 changed files with 4 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ let
image = pkgs.dockerTools.streamLayeredImage {
name = pkgs.umami.name;
tag = pkgs.umami.version;
contents = [ pkgs.cacert ];
contents = with pkgs; [ cacert openssl ];
config = {
# Umami in nixpkgs typically provides a binary or script to start the server
Entrypoint = [ "${pkgs.umami}/bin/umami-server" ];