This commit is contained in:
2025-09-23 21:15:51 +03:00
parent ba5420755f
commit 00d9293d53
4 changed files with 35 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
{
config,
xlib,
...
}:
{
services.trilium-server = {
enable = true;
nginx = {
enable = true;
hostName = "trilium"
};
dataDir = "/mnt/services/trilium";
};
systemd.tmpfiles.rules = [
"z /mnt/services/trilium 0750 trilium trilium -"
];
}