dotfiles/common/users/docker/obsidian/nginx.nix
sadan 6e56012318
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
2025-02-25 00:23:50 -05:00

19 lines
318 B
Nix

{ ... }:
{
services = {
nginx = {
virtualHosts = {
"obsidian.sadan.zip" = {
forceSSL = true;
useACMEHost = "sadan.zip";
locations = {
"/" = {
proxyPass = "http://localhost:5984";
};
};
};
};
};
};
}