add obsidian livesync

use relative path

rename dockerfile and change build arg

try systemd tmpfiles

add docker entrypoint

use more systemd tmpfiles

whoops i was missing a file

remove home.files and move to systemd.tmpfiles

dont use root

make immutable

make immutable v2

whoops

remove +i

needs to be executable
This commit is contained in:
sadan 2025-02-24 23:11:31 -05:00
parent 2852bb3c35
commit 6e56012318
No known key found for this signature in database
11 changed files with 446 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ ... }:
{
services = {
nginx = {
virtualHosts = {
"obsidian.sadan.zip" = {
forceSSL = true;
useACMEHost = "sadan.zip";
locations = {
"/" = {
proxyPass = "http://localhost:5984";
};
};
};
};
};
};
}