excalidraw
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
./apps/actual
|
./apps/actual
|
||||||
./apps/arrs
|
./apps/arrs
|
||||||
./apps/crowdsec
|
./apps/crowdsec
|
||||||
|
./apps/excalidraw
|
||||||
./apps/gitea
|
./apps/gitea
|
||||||
./apps/immich
|
./apps/immich
|
||||||
./apps/jellyfin
|
./apps/jellyfin
|
||||||
|
|||||||
13
hosts/nas/apps/excalidraw/default.nix
Normal file
13
hosts/nas/apps/excalidraw/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user