1

Add memos service

This commit is contained in:
2023-11-19 14:49:06 +01:00
parent 9edeb71ae4
commit 7dc79b823c
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{
config,
lib,
pkgs,
...
}: {
virtualisation.oci-containers.containers.memos = {
image = "ghcr.io/usememos/memos:latest";
autoStart = true;
dependsOn = [];
ports = [
"5230:5230"
];
volumes = [
"memos_data:/var/opt/memos"
];
environment = {};
extraOptions = [
"--net=behind-nginx"
];
};
}