hippocampus: dawarich: enable

This commit is contained in:
2026-02-15 18:23:06 -05:00
parent bf4003693a
commit 3cec2ea181
2 changed files with 17 additions and 0 deletions

View File

@@ -56,5 +56,8 @@
# Immich Photo Backups # Immich Photo Backups
./public/immich.nix ./public/immich.nix
# Dawarich location tracking
./public/dawarich.nix
]; ];
} }

View File

@@ -0,0 +1,14 @@
{ config, pkgs, lib, ... }: {
services.dawarich = {
enable = true;
webPort = 7392;
};
services.caddy.virtualHosts = {
"location.crompton.cc" = {
extraConfig = ''
reverse_proxy localhost:${toString config.services.dawarich.webPort}
'';
};
};
}