more docker containers

This commit is contained in:
mjallen18
2024-02-20 16:28:40 -06:00
parent 680f579d7e
commit b599645fd9
5 changed files with 51 additions and 2 deletions

9
nas-apps/collabora.nix Normal file
View File

@@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
# code
virtualisation.oci-containers.containers."collabora" = {
autoStart = true;
image = "collabora/code";
ports = [ "9980:9980" ];
};
}