1

Disable memos service

This commit is contained in:
2024-03-09 17:26:45 +01:00
parent 27e0a5f76e
commit d73a0a3c46

View File

@ -1,27 +0,0 @@
{
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"
];
};
}