excalidraw

This commit is contained in:
mjallen18
2025-04-29 13:43:18 -05:00
parent 1b61ab3377
commit 23e4670079
2 changed files with 14 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
./apps/actual
./apps/arrs
./apps/crowdsec
./apps/excalidraw
./apps/gitea
./apps/immich
./apps/jellyfin

View File

@@ -0,0 +1,13 @@
{ config, ... }:
{
virtualisation.oci-containers.containers.excalidraw = {
autoStart = true;
image = "excalidraw/excalidraw";
ports = [ "8765:80" ];
environment = {
PUID = toString config.users.users.nix-apps.uid;
PGID = toString config.users.groups.jallen-nas.gid;
TZ = "America/Chicago";
};
};
}